Models
Types

Models

Event

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • -
Yes -
categories Category[]
  • -
Yes -
isActive Boolean
  • @default(false)
Yes -
isFinished Boolean
  • @default(false)
Yes -
players Player[]
  • -
Yes -
matches Match[]
  • -
Yes -
places Place[]
  • -
Yes -
eventRequests EventRequest[]
  • -
Yes -
eventDoubles EventDouble[]
  • -
Yes -
startDate DateTime?
  • -
No -
finishDate DateTime?
  • -
No -
matchDurationInMinutes Int?
  • -
No -
timeOfFirstMatch Int?
  • -
No -
timeOfLastMatch Int?
  • -
No -
games Game[]
  • -
Yes -
sets Set[]
  • -
Yes -
matchDates MatchDate[]
  • -
Yes -
eventType EventType
  • @default(ALLxALL)
Yes -
matchType MatchType
  • @default(SUPERSET)
Yes -
courts Court[]
  • -
Yes -
invite Invite?
  • -
No -
categoriesGroups CategoryGroup[]
  • -
Yes -
eventMatches EventMatch[]
  • -
Yes -
isGroupMatchesFinished Boolean
  • @default(false)
Yes -

Operations

findUnique

Find zero or one Event

// Get one Event
const event = await prisma.event.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

findFirst

Find first Event

// Get one Event
const event = await prisma.event.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereInput No
orderBy EventOrderByWithRelationInput[] | EventOrderByWithRelationInput No
cursor EventWhereUniqueInput No
take Int No
skip Int No
distinct EventScalarFieldEnum | EventScalarFieldEnum[] No

Output

Type: Event
Required: No
List: No

findMany

Find zero or more Event

// Get all Event
const Event = await prisma.event.findMany()
// Get first 10 Event
const Event = await prisma.event.findMany({ take: 10 })

Input

Name Type Required
where EventWhereInput No
orderBy EventOrderByWithRelationInput[] | EventOrderByWithRelationInput No
cursor EventWhereUniqueInput No
take Int No
skip Int No
distinct EventScalarFieldEnum | EventScalarFieldEnum[] No

Output

Type: Event
Required: Yes
List: Yes

create

Create one Event

// Create one Event
const Event = await prisma.event.create({
  data: {
    // ... data to create a Event
  }
})

Input

Name Type Required
data EventCreateInput | EventUncheckedCreateInput Yes

Output

Type: Event
Required: Yes
List: No

delete

Delete one Event

// Delete one Event
const Event = await prisma.event.delete({
  where: {
    // ... filter to delete one Event
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

update

Update one Event

// Update one Event
const event = await prisma.event.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventUpdateInput | EventUncheckedUpdateInput Yes
where EventWhereUniqueInput Yes

Output

Type: Event
Required: No
List: No

deleteMany

Delete zero or more Event

// Delete a few Event
const { count } = await prisma.event.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Event

const { count } = await prisma.event.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventUpdateManyMutationInput | EventUncheckedUpdateManyInput Yes
where EventWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Event

// Update or create a Event
const event = await prisma.event.upsert({
  create: {
    // ... data to create a Event
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Event we want to update
  }
})

Input

Name Type Required
where EventWhereUniqueInput Yes
create EventCreateInput | EventUncheckedCreateInput Yes
update EventUpdateInput | EventUncheckedUpdateInput Yes

Output

Type: Event
Required: Yes
List: No

CategoryGroup

Name Value
@@unique
  • eventId
  • categoryId
@@index
  • eventId
  • categoryId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
category Category
  • -
Yes -
categoryId String
  • -
Yes -
groups DoublesGroup[]
  • -
Yes -
event Event?
  • -
No -
eventId String?
  • -
No -
finalMatches EventMatch[]
  • -
Yes -
groupsStageFinished Boolean
  • @default(false)
Yes -

Operations

findUnique

Find zero or one CategoryGroup

// Get one CategoryGroup
const categoryGroup = await prisma.categoryGroup.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryGroupWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first CategoryGroup

// Get one CategoryGroup
const categoryGroup = await prisma.categoryGroup.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryGroupWhereInput No
orderBy CategoryGroupOrderByWithRelationInput[] | CategoryGroupOrderByWithRelationInput No
cursor CategoryGroupWhereUniqueInput No
take Int No
skip Int No
distinct CategoryGroupScalarFieldEnum | CategoryGroupScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more CategoryGroup

// Get all CategoryGroup
const CategoryGroup = await prisma.categoryGroup.findMany()
// Get first 10 CategoryGroup
const CategoryGroup = await prisma.categoryGroup.findMany({ take: 10 })

Input

Name Type Required
where CategoryGroupWhereInput No
orderBy CategoryGroupOrderByWithRelationInput[] | CategoryGroupOrderByWithRelationInput No
cursor CategoryGroupWhereUniqueInput No
take Int No
skip Int No
distinct CategoryGroupScalarFieldEnum | CategoryGroupScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one CategoryGroup

// Create one CategoryGroup
const CategoryGroup = await prisma.categoryGroup.create({
  data: {
    // ... data to create a CategoryGroup
  }
})

Input

Name Type Required
data CategoryGroupCreateInput | CategoryGroupUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one CategoryGroup

// Delete one CategoryGroup
const CategoryGroup = await prisma.categoryGroup.delete({
  where: {
    // ... filter to delete one CategoryGroup
  }
})

Input

Name Type Required
where CategoryGroupWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one CategoryGroup

// Update one CategoryGroup
const categoryGroup = await prisma.categoryGroup.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryGroupUpdateInput | CategoryGroupUncheckedUpdateInput Yes
where CategoryGroupWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more CategoryGroup

// Delete a few CategoryGroup
const { count } = await prisma.categoryGroup.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryGroupWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one CategoryGroup

const { count } = await prisma.categoryGroup.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyInput Yes
where CategoryGroupWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one CategoryGroup

// Update or create a CategoryGroup
const categoryGroup = await prisma.categoryGroup.upsert({
  create: {
    // ... data to create a CategoryGroup
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the CategoryGroup we want to update
  }
})

Input

Name Type Required
where CategoryGroupWhereUniqueInput Yes
create CategoryGroupCreateInput | CategoryGroupUncheckedCreateInput Yes
update CategoryGroupUpdateInput | CategoryGroupUncheckedUpdateInput Yes

Output

Required: Yes
List: No

DoublesGroup

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
key String
  • -
Yes -
eventDoubles EventDouble[]
  • -
Yes -
categoryGroup CategoryGroup?
  • -
No -
categoryGroupId String?
  • -
No -
firstPlace Double?
  • -
No -
firstPlaceDoublesId String?
  • -
No -
secondPlace Double?
  • -
No -
secondPlaceDoublesId String?
  • -
No -
groupMatches EventMatch[]
  • -
Yes -

Operations

findUnique

Find zero or one DoublesGroup

// Get one DoublesGroup
const doublesGroup = await prisma.doublesGroup.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DoublesGroupWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first DoublesGroup

// Get one DoublesGroup
const doublesGroup = await prisma.doublesGroup.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DoublesGroupWhereInput No
orderBy DoublesGroupOrderByWithRelationInput[] | DoublesGroupOrderByWithRelationInput No
cursor DoublesGroupWhereUniqueInput No
take Int No
skip Int No
distinct DoublesGroupScalarFieldEnum | DoublesGroupScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more DoublesGroup

// Get all DoublesGroup
const DoublesGroup = await prisma.doublesGroup.findMany()
// Get first 10 DoublesGroup
const DoublesGroup = await prisma.doublesGroup.findMany({ take: 10 })

Input

Name Type Required
where DoublesGroupWhereInput No
orderBy DoublesGroupOrderByWithRelationInput[] | DoublesGroupOrderByWithRelationInput No
cursor DoublesGroupWhereUniqueInput No
take Int No
skip Int No
distinct DoublesGroupScalarFieldEnum | DoublesGroupScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one DoublesGroup

// Create one DoublesGroup
const DoublesGroup = await prisma.doublesGroup.create({
  data: {
    // ... data to create a DoublesGroup
  }
})

Input

Name Type Required
data DoublesGroupCreateInput | DoublesGroupUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one DoublesGroup

// Delete one DoublesGroup
const DoublesGroup = await prisma.doublesGroup.delete({
  where: {
    // ... filter to delete one DoublesGroup
  }
})

Input

Name Type Required
where DoublesGroupWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one DoublesGroup

// Update one DoublesGroup
const doublesGroup = await prisma.doublesGroup.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DoublesGroupUpdateInput | DoublesGroupUncheckedUpdateInput Yes
where DoublesGroupWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more DoublesGroup

// Delete a few DoublesGroup
const { count } = await prisma.doublesGroup.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DoublesGroupWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one DoublesGroup

const { count } = await prisma.doublesGroup.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyInput Yes
where DoublesGroupWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one DoublesGroup

// Update or create a DoublesGroup
const doublesGroup = await prisma.doublesGroup.upsert({
  create: {
    // ... data to create a DoublesGroup
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the DoublesGroup we want to update
  }
})

Input

Name Type Required
where DoublesGroupWhereUniqueInput Yes
create DoublesGroupCreateInput | DoublesGroupUncheckedCreateInput Yes
update DoublesGroupUpdateInput | DoublesGroupUncheckedUpdateInput Yes

Output

Required: Yes
List: No

EventRequest

Name Value
@@id
  • eventId
  • doubleId
  • categoryId

Fields

Name Type Attributes Required Comment
event Event
  • -
Yes -
eventId String
  • -
Yes -
double Double
  • -
Yes -
doubleId String
  • -
Yes -
category Category
  • -
Yes -
categoryId String
  • -
Yes -
status RequestStatus
  • @default(PENDING)
Yes -

Operations

findUnique

Find zero or one EventRequest

// Get one EventRequest
const eventRequest = await prisma.eventRequest.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventRequestWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first EventRequest

// Get one EventRequest
const eventRequest = await prisma.eventRequest.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventRequestWhereInput No
orderBy EventRequestOrderByWithRelationInput[] | EventRequestOrderByWithRelationInput No
cursor EventRequestWhereUniqueInput No
take Int No
skip Int No
distinct EventRequestScalarFieldEnum | EventRequestScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more EventRequest

// Get all EventRequest
const EventRequest = await prisma.eventRequest.findMany()
// Get first 10 EventRequest
const EventRequest = await prisma.eventRequest.findMany({ take: 10 })

Input

Name Type Required
where EventRequestWhereInput No
orderBy EventRequestOrderByWithRelationInput[] | EventRequestOrderByWithRelationInput No
cursor EventRequestWhereUniqueInput No
take Int No
skip Int No
distinct EventRequestScalarFieldEnum | EventRequestScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one EventRequest

// Create one EventRequest
const EventRequest = await prisma.eventRequest.create({
  data: {
    // ... data to create a EventRequest
  }
})

Input

Name Type Required
data EventRequestCreateInput | EventRequestUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one EventRequest

// Delete one EventRequest
const EventRequest = await prisma.eventRequest.delete({
  where: {
    // ... filter to delete one EventRequest
  }
})

Input

Name Type Required
where EventRequestWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one EventRequest

// Update one EventRequest
const eventRequest = await prisma.eventRequest.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventRequestUpdateInput | EventRequestUncheckedUpdateInput Yes
where EventRequestWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more EventRequest

// Delete a few EventRequest
const { count } = await prisma.eventRequest.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventRequestWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one EventRequest

const { count } = await prisma.eventRequest.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyInput Yes
where EventRequestWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one EventRequest

// Update or create a EventRequest
const eventRequest = await prisma.eventRequest.upsert({
  create: {
    // ... data to create a EventRequest
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the EventRequest we want to update
  }
})

Input

Name Type Required
where EventRequestWhereUniqueInput Yes
create EventRequestCreateInput | EventRequestUncheckedCreateInput Yes
update EventRequestUpdateInput | EventRequestUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Court

Name Value
@@unique
  • name
  • placeId
@@index
  • name
  • placeId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • -
Yes -
isAvailable Boolean
  • @default(true)
Yes -
events Event[]
  • -
Yes -
matches Match[]
  • -
Yes -
place Place
  • -
Yes -
placeId String
  • -
Yes -
matchDates MatchDate[]
  • -
Yes -

Operations

findUnique

Find zero or one Court

// Get one Court
const court = await prisma.court.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CourtWhereUniqueInput Yes

Output

Type: Court
Required: No
List: No

findFirst

Find first Court

// Get one Court
const court = await prisma.court.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CourtWhereInput No
orderBy CourtOrderByWithRelationInput[] | CourtOrderByWithRelationInput No
cursor CourtWhereUniqueInput No
take Int No
skip Int No
distinct CourtScalarFieldEnum | CourtScalarFieldEnum[] No

Output

Type: Court
Required: No
List: No

findMany

Find zero or more Court

// Get all Court
const Court = await prisma.court.findMany()
// Get first 10 Court
const Court = await prisma.court.findMany({ take: 10 })

Input

Name Type Required
where CourtWhereInput No
orderBy CourtOrderByWithRelationInput[] | CourtOrderByWithRelationInput No
cursor CourtWhereUniqueInput No
take Int No
skip Int No
distinct CourtScalarFieldEnum | CourtScalarFieldEnum[] No

Output

Type: Court
Required: Yes
List: Yes

create

Create one Court

// Create one Court
const Court = await prisma.court.create({
  data: {
    // ... data to create a Court
  }
})

Input

Name Type Required
data CourtCreateInput | CourtUncheckedCreateInput Yes

Output

Type: Court
Required: Yes
List: No

delete

Delete one Court

// Delete one Court
const Court = await prisma.court.delete({
  where: {
    // ... filter to delete one Court
  }
})

Input

Name Type Required
where CourtWhereUniqueInput Yes

Output

Type: Court
Required: No
List: No

update

Update one Court

// Update one Court
const court = await prisma.court.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CourtUpdateInput | CourtUncheckedUpdateInput Yes
where CourtWhereUniqueInput Yes

Output

Type: Court
Required: No
List: No

deleteMany

Delete zero or more Court

// Delete a few Court
const { count } = await prisma.court.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CourtWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Court

const { count } = await prisma.court.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CourtUpdateManyMutationInput | CourtUncheckedUpdateManyInput Yes
where CourtWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Court

// Update or create a Court
const court = await prisma.court.upsert({
  create: {
    // ... data to create a Court
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Court we want to update
  }
})

Input

Name Type Required
where CourtWhereUniqueInput Yes
create CourtCreateInput | CourtUncheckedCreateInput Yes
update CourtUpdateInput | CourtUncheckedUpdateInput Yes

Output

Type: Court
Required: Yes
List: No

EventDouble

Name Value
@@id
  • eventId
  • doubleId
  • categoryId

Fields

Name Type Attributes Required Comment
event Event
  • -
Yes -
eventId String
  • -
Yes -
double Double
  • -
Yes -
doubleId String
  • -
Yes -
category Category
  • -
Yes -
categoryId String
  • -
Yes -
atRest MatchDate?
  • -
No -
atRestId String?
  • -
No -
DoublesGroup DoublesGroup?
  • -
No -
doublesGroupId String?
  • -
No -

Operations

findUnique

Find zero or one EventDouble

// Get one EventDouble
const eventDouble = await prisma.eventDouble.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventDoubleWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first EventDouble

// Get one EventDouble
const eventDouble = await prisma.eventDouble.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventDoubleWhereInput No
orderBy EventDoubleOrderByWithRelationInput[] | EventDoubleOrderByWithRelationInput No
cursor EventDoubleWhereUniqueInput No
take Int No
skip Int No
distinct EventDoubleScalarFieldEnum | EventDoubleScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more EventDouble

// Get all EventDouble
const EventDouble = await prisma.eventDouble.findMany()
// Get first 10 EventDouble
const EventDouble = await prisma.eventDouble.findMany({ take: 10 })

Input

Name Type Required
where EventDoubleWhereInput No
orderBy EventDoubleOrderByWithRelationInput[] | EventDoubleOrderByWithRelationInput No
cursor EventDoubleWhereUniqueInput No
take Int No
skip Int No
distinct EventDoubleScalarFieldEnum | EventDoubleScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one EventDouble

// Create one EventDouble
const EventDouble = await prisma.eventDouble.create({
  data: {
    // ... data to create a EventDouble
  }
})

Input

Name Type Required
data EventDoubleCreateInput | EventDoubleUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one EventDouble

// Delete one EventDouble
const EventDouble = await prisma.eventDouble.delete({
  where: {
    // ... filter to delete one EventDouble
  }
})

Input

Name Type Required
where EventDoubleWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one EventDouble

// Update one EventDouble
const eventDouble = await prisma.eventDouble.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventDoubleUpdateInput | EventDoubleUncheckedUpdateInput Yes
where EventDoubleWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more EventDouble

// Delete a few EventDouble
const { count } = await prisma.eventDouble.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventDoubleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one EventDouble

const { count } = await prisma.eventDouble.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyInput Yes
where EventDoubleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one EventDouble

// Update or create a EventDouble
const eventDouble = await prisma.eventDouble.upsert({
  create: {
    // ... data to create a EventDouble
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the EventDouble we want to update
  }
})

Input

Name Type Required
where EventDoubleWhereUniqueInput Yes
create EventDoubleCreateInput | EventDoubleUncheckedCreateInput Yes
update EventDoubleUpdateInput | EventDoubleUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Category

Name Value
@@unique
  • level
  • type
@@index
  • level
  • type

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
level Int
  • -
Yes -
players Player[]
  • -
Yes -
doubles Double[]
  • -
Yes -
type CatType
  • -
Yes -
events Event[]
  • -
Yes -
matches Match[]
  • -
Yes -
eventDoubles EventDouble[]
  • -
Yes -
eventRequests EventRequest[]
  • -
Yes -
categoryGroup CategoryGroup[]
  • -
Yes -

Operations

findUnique

Find zero or one Category

// Get one Category
const category = await prisma.category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

findFirst

Find first Category

// Get one Category
const category = await prisma.category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereInput No
orderBy CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput No
cursor CategoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: Category
Required: No
List: No

findMany

Find zero or more Category

// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })

Input

Name Type Required
where CategoryWhereInput No
orderBy CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput No
cursor CategoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: Category
Required: Yes
List: Yes

create

Create one Category

// Create one Category
const Category = await prisma.category.create({
  data: {
    // ... data to create a Category
  }
})

Input

Name Type Required
data CategoryCreateInput | CategoryUncheckedCreateInput Yes

Output

Type: Category
Required: Yes
List: No

delete

Delete one Category

// Delete one Category
const Category = await prisma.category.delete({
  where: {
    // ... filter to delete one Category
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

update

Update one Category

// Update one Category
const category = await prisma.category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryUpdateInput | CategoryUncheckedUpdateInput Yes
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

deleteMany

Delete zero or more Category

// Delete a few Category
const { count } = await prisma.category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Category

const { count } = await prisma.category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput Yes
where CategoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Category

// Update or create a Category
const category = await prisma.category.upsert({
  create: {
    // ... data to create a Category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Category we want to update
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes
create CategoryCreateInput | CategoryUncheckedCreateInput Yes
update CategoryUpdateInput | CategoryUncheckedUpdateInput Yes

Output

Type: Category
Required: Yes
List: No

EventMatch

Name Value
@@id
  • eventId
  • matchId

Fields

Name Type Attributes Required Comment
number Int
  • @default(autoincrement())
Yes -
type EventMatchType
  • @default(GROUP)
Yes -
event Event
  • -
Yes -
eventId String
  • -
Yes -
match Match
  • -
Yes -
matchId String
  • @unique
Yes -
matchesWinnersRef Match[]
  • -
Yes -
categoryGroup CategoryGroup?
  • -
No -
categoryGroupId String?
  • -
No -
doublesGroup DoublesGroup?
  • -
No -
doublesGroupId String?
  • -
No -

Operations

findUnique

Find zero or one EventMatch

// Get one EventMatch
const eventMatch = await prisma.eventMatch.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventMatchWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first EventMatch

// Get one EventMatch
const eventMatch = await prisma.eventMatch.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventMatchWhereInput No
orderBy EventMatchOrderByWithRelationInput[] | EventMatchOrderByWithRelationInput No
cursor EventMatchWhereUniqueInput No
take Int No
skip Int No
distinct EventMatchScalarFieldEnum | EventMatchScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more EventMatch

// Get all EventMatch
const EventMatch = await prisma.eventMatch.findMany()
// Get first 10 EventMatch
const EventMatch = await prisma.eventMatch.findMany({ take: 10 })

Input

Name Type Required
where EventMatchWhereInput No
orderBy EventMatchOrderByWithRelationInput[] | EventMatchOrderByWithRelationInput No
cursor EventMatchWhereUniqueInput No
take Int No
skip Int No
distinct EventMatchScalarFieldEnum | EventMatchScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one EventMatch

// Create one EventMatch
const EventMatch = await prisma.eventMatch.create({
  data: {
    // ... data to create a EventMatch
  }
})

Input

Name Type Required
data EventMatchCreateInput | EventMatchUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one EventMatch

// Delete one EventMatch
const EventMatch = await prisma.eventMatch.delete({
  where: {
    // ... filter to delete one EventMatch
  }
})

Input

Name Type Required
where EventMatchWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one EventMatch

// Update one EventMatch
const eventMatch = await prisma.eventMatch.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventMatchUpdateInput | EventMatchUncheckedUpdateInput Yes
where EventMatchWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more EventMatch

// Delete a few EventMatch
const { count } = await prisma.eventMatch.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where EventMatchWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one EventMatch

const { count } = await prisma.eventMatch.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyInput Yes
where EventMatchWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one EventMatch

// Update or create a EventMatch
const eventMatch = await prisma.eventMatch.upsert({
  create: {
    // ... data to create a EventMatch
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the EventMatch we want to update
  }
})

Input

Name Type Required
where EventMatchWhereUniqueInput Yes
create EventMatchCreateInput | EventMatchUncheckedCreateInput Yes
update EventMatchUpdateInput | EventMatchUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Match

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
players Player[]
  • -
Yes -
isFinished Boolean
  • @default(false)
Yes -
category Category?
  • -
No -
categoryId String?
  • -
No -
winner Double?
  • -
No -
winnerDoublesId String?
  • -
No -
sets Set[]
  • -
Yes -
doubles Double[]
  • -
Yes -
event Event?
  • -
No -
eventId String?
  • -
No -
type MatchType
  • @default(SUPERSET)
Yes -
matchDate MatchDate?
  • -
No -
court Court?
  • -
No -
courtId String?
  • -
No -
invite Invite?
  • -
No -
eventMatch EventMatch?
  • -
No -
winnerRef EventMatch?
  • -
No -
winnerRefId String?
  • -
No -

Operations

findUnique

Find zero or one Match

// Get one Match
const match = await prisma.match.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MatchWhereUniqueInput Yes

Output

Type: Match
Required: No
List: No

findFirst

Find first Match

// Get one Match
const match = await prisma.match.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MatchWhereInput No
orderBy MatchOrderByWithRelationInput[] | MatchOrderByWithRelationInput No
cursor MatchWhereUniqueInput No
take Int No
skip Int No
distinct MatchScalarFieldEnum | MatchScalarFieldEnum[] No

Output

Type: Match
Required: No
List: No

findMany

Find zero or more Match

// Get all Match
const Match = await prisma.match.findMany()
// Get first 10 Match
const Match = await prisma.match.findMany({ take: 10 })

Input

Name Type Required
where MatchWhereInput No
orderBy MatchOrderByWithRelationInput[] | MatchOrderByWithRelationInput No
cursor MatchWhereUniqueInput No
take Int No
skip Int No
distinct MatchScalarFieldEnum | MatchScalarFieldEnum[] No

Output

Type: Match
Required: Yes
List: Yes

create

Create one Match

// Create one Match
const Match = await prisma.match.create({
  data: {
    // ... data to create a Match
  }
})

Input

Name Type Required
data MatchCreateInput | MatchUncheckedCreateInput No

Output

Type: Match
Required: Yes
List: No

delete

Delete one Match

// Delete one Match
const Match = await prisma.match.delete({
  where: {
    // ... filter to delete one Match
  }
})

Input

Name Type Required
where MatchWhereUniqueInput Yes

Output

Type: Match
Required: No
List: No

update

Update one Match

// Update one Match
const match = await prisma.match.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MatchUpdateInput | MatchUncheckedUpdateInput Yes
where MatchWhereUniqueInput Yes

Output

Type: Match
Required: No
List: No

deleteMany

Delete zero or more Match

// Delete a few Match
const { count } = await prisma.match.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MatchWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Match

const { count } = await prisma.match.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyInput Yes
where MatchWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Match

// Update or create a Match
const match = await prisma.match.upsert({
  create: {
    // ... data to create a Match
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Match we want to update
  }
})

Input

Name Type Required
where MatchWhereUniqueInput Yes
create MatchCreateInput | MatchUncheckedCreateInput Yes
update MatchUpdateInput | MatchUncheckedUpdateInput Yes

Output

Type: Match
Required: Yes
List: No

MatchDate

Name Value
@@unique
  • eventId
  • start
  • finish
  • courtId
@@index
  • eventId
  • start
  • finish
  • courtId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
event Event
  • -
Yes -
eventId String
  • -
Yes -
match Match?
  • -
No -
matchId String?
  • @unique
No -
start DateTime
  • -
Yes -
finish DateTime
  • -
Yes -
court Court
  • -
Yes -
courtId String
  • -
Yes -
atRest EventDouble[]
  • -
Yes -

Operations

findUnique

Find zero or one MatchDate

// Get one MatchDate
const matchDate = await prisma.matchDate.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MatchDateWhereUniqueInput Yes

Output

Type: MatchDate
Required: No
List: No

findFirst

Find first MatchDate

// Get one MatchDate
const matchDate = await prisma.matchDate.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MatchDateWhereInput No
orderBy MatchDateOrderByWithRelationInput[] | MatchDateOrderByWithRelationInput No
cursor MatchDateWhereUniqueInput No
take Int No
skip Int No
distinct MatchDateScalarFieldEnum | MatchDateScalarFieldEnum[] No

Output

Type: MatchDate
Required: No
List: No

findMany

Find zero or more MatchDate

// Get all MatchDate
const MatchDate = await prisma.matchDate.findMany()
// Get first 10 MatchDate
const MatchDate = await prisma.matchDate.findMany({ take: 10 })

Input

Name Type Required
where MatchDateWhereInput No
orderBy MatchDateOrderByWithRelationInput[] | MatchDateOrderByWithRelationInput No
cursor MatchDateWhereUniqueInput No
take Int No
skip Int No
distinct MatchDateScalarFieldEnum | MatchDateScalarFieldEnum[] No

Output

Type: MatchDate
Required: Yes
List: Yes

create

Create one MatchDate

// Create one MatchDate
const MatchDate = await prisma.matchDate.create({
  data: {
    // ... data to create a MatchDate
  }
})

Input

Name Type Required
data MatchDateCreateInput | MatchDateUncheckedCreateInput Yes

Output

Type: MatchDate
Required: Yes
List: No

delete

Delete one MatchDate

// Delete one MatchDate
const MatchDate = await prisma.matchDate.delete({
  where: {
    // ... filter to delete one MatchDate
  }
})

Input

Name Type Required
where MatchDateWhereUniqueInput Yes

Output

Type: MatchDate
Required: No
List: No

update

Update one MatchDate

// Update one MatchDate
const matchDate = await prisma.matchDate.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MatchDateUpdateInput | MatchDateUncheckedUpdateInput Yes
where MatchDateWhereUniqueInput Yes

Output

Type: MatchDate
Required: No
List: No

deleteMany

Delete zero or more MatchDate

// Delete a few MatchDate
const { count } = await prisma.matchDate.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MatchDateWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one MatchDate

const { count } = await prisma.matchDate.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MatchDateUpdateManyMutationInput | MatchDateUncheckedUpdateManyInput Yes
where MatchDateWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one MatchDate

// Update or create a MatchDate
const matchDate = await prisma.matchDate.upsert({
  create: {
    // ... data to create a MatchDate
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the MatchDate we want to update
  }
})

Input

Name Type Required
where MatchDateWhereUniqueInput Yes
create MatchDateCreateInput | MatchDateUncheckedCreateInput Yes
update MatchDateUpdateInput | MatchDateUncheckedUpdateInput Yes

Output

Type: MatchDate
Required: Yes
List: No

Set

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
type SetType
  • @default(SUPER)
Yes -
number Int
  • -
Yes -
doubles Double[]
  • -
Yes -
winner Double?
  • -
No -
setWinnerId String?
  • -
No -
result String?
  • -
No -
match Match
  • -
Yes -
matchId String
  • -
Yes -
games Game[]
  • -
Yes -
isFinished Boolean
  • @default(false)
Yes -
events Event[]
  • -
Yes -

Operations

findUnique

Find zero or one Set

// Get one Set
const set = await prisma.set.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SetWhereUniqueInput Yes

Output

Type: Set
Required: No
List: No

findFirst

Find first Set

// Get one Set
const set = await prisma.set.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SetWhereInput No
orderBy SetOrderByWithRelationInput[] | SetOrderByWithRelationInput No
cursor SetWhereUniqueInput No
take Int No
skip Int No
distinct SetScalarFieldEnum | SetScalarFieldEnum[] No

Output

Type: Set
Required: No
List: No

findMany

Find zero or more Set

// Get all Set
const Set = await prisma.set.findMany()
// Get first 10 Set
const Set = await prisma.set.findMany({ take: 10 })

Input

Name Type Required
where SetWhereInput No
orderBy SetOrderByWithRelationInput[] | SetOrderByWithRelationInput No
cursor SetWhereUniqueInput No
take Int No
skip Int No
distinct SetScalarFieldEnum | SetScalarFieldEnum[] No

Output

Type: Set
Required: Yes
List: Yes

create

Create one Set

// Create one Set
const Set = await prisma.set.create({
  data: {
    // ... data to create a Set
  }
})

Input

Name Type Required
data SetCreateInput | SetUncheckedCreateInput Yes

Output

Type: Set
Required: Yes
List: No

delete

Delete one Set

// Delete one Set
const Set = await prisma.set.delete({
  where: {
    // ... filter to delete one Set
  }
})

Input

Name Type Required
where SetWhereUniqueInput Yes

Output

Type: Set
Required: No
List: No

update

Update one Set

// Update one Set
const set = await prisma.set.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SetUpdateInput | SetUncheckedUpdateInput Yes
where SetWhereUniqueInput Yes

Output

Type: Set
Required: No
List: No

deleteMany

Delete zero or more Set

// Delete a few Set
const { count } = await prisma.set.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SetWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Set

const { count } = await prisma.set.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SetUpdateManyMutationInput | SetUncheckedUpdateManyInput Yes
where SetWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Set

// Update or create a Set
const set = await prisma.set.upsert({
  create: {
    // ... data to create a Set
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Set we want to update
  }
})

Input

Name Type Required
where SetWhereUniqueInput Yes
create SetCreateInput | SetUncheckedCreateInput Yes
update SetUpdateInput | SetUncheckedUpdateInput Yes

Output

Type: Set
Required: Yes
List: No

Game

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
set Set
  • -
Yes -
setId String
  • -
Yes -
doubles Double[]
  • -
Yes -
winner Double?
  • -
No -
winnerId String?
  • -
No -
events Event[]
  • -
Yes -

Operations

findUnique

Find zero or one Game

// Get one Game
const game = await prisma.game.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GameWhereUniqueInput Yes

Output

Type: Game
Required: No
List: No

findFirst

Find first Game

// Get one Game
const game = await prisma.game.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GameWhereInput No
orderBy GameOrderByWithRelationInput[] | GameOrderByWithRelationInput No
cursor GameWhereUniqueInput No
take Int No
skip Int No
distinct GameScalarFieldEnum | GameScalarFieldEnum[] No

Output

Type: Game
Required: No
List: No

findMany

Find zero or more Game

// Get all Game
const Game = await prisma.game.findMany()
// Get first 10 Game
const Game = await prisma.game.findMany({ take: 10 })

Input

Name Type Required
where GameWhereInput No
orderBy GameOrderByWithRelationInput[] | GameOrderByWithRelationInput No
cursor GameWhereUniqueInput No
take Int No
skip Int No
distinct GameScalarFieldEnum | GameScalarFieldEnum[] No

Output

Type: Game
Required: Yes
List: Yes

create

Create one Game

// Create one Game
const Game = await prisma.game.create({
  data: {
    // ... data to create a Game
  }
})

Input

Name Type Required
data GameCreateInput | GameUncheckedCreateInput Yes

Output

Type: Game
Required: Yes
List: No

delete

Delete one Game

// Delete one Game
const Game = await prisma.game.delete({
  where: {
    // ... filter to delete one Game
  }
})

Input

Name Type Required
where GameWhereUniqueInput Yes

Output

Type: Game
Required: No
List: No

update

Update one Game

// Update one Game
const game = await prisma.game.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GameUpdateInput | GameUncheckedUpdateInput Yes
where GameWhereUniqueInput Yes

Output

Type: Game
Required: No
List: No

deleteMany

Delete zero or more Game

// Delete a few Game
const { count } = await prisma.game.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GameWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Game

const { count } = await prisma.game.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GameUpdateManyMutationInput | GameUncheckedUpdateManyInput Yes
where GameWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Game

// Update or create a Game
const game = await prisma.game.upsert({
  create: {
    // ... data to create a Game
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Game we want to update
  }
})

Input

Name Type Required
where GameWhereUniqueInput Yes
create GameCreateInput | GameUncheckedCreateInput Yes
update GameUpdateInput | GameUncheckedUpdateInput Yes

Output

Type: Game
Required: Yes
List: No

User

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
firstName String?
  • -
No -
lastName String?
  • -
No -
email String
  • @unique
Yes -
password String
  • -
Yes -
dob DateTime?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
player Player?
  • -
No -
playerId String?
  • @unique
No -
role Role
  • @default(USER)
Yes -
hashedRt String?
  • -
No -
profileImage String?
  • -
No -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

Invite

Name Value
@@unique
  • inviterId
  • invitedId
  • inviteType
@@index
  • inviterId
  • invitedId
  • inviteType

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
inviteType InviteType
  • -
Yes -
players Player[]
  • -
Yes -
double Double?
  • -
No -
doublesId String?
  • -
No -
event Event?
  • -
No -
eventId String?
  • @unique
No -
match Match?
  • -
No -
matchId String?
  • @unique
No -
inviterId String
  • -
Yes -
invitedId String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Invite

// Get one Invite
const invite = await prisma.invite.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where InviteWhereUniqueInput Yes

Output

Type: Invite
Required: No
List: No

findFirst

Find first Invite

// Get one Invite
const invite = await prisma.invite.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where InviteWhereInput No
orderBy InviteOrderByWithRelationInput[] | InviteOrderByWithRelationInput No
cursor InviteWhereUniqueInput No
take Int No
skip Int No
distinct InviteScalarFieldEnum | InviteScalarFieldEnum[] No

Output

Type: Invite
Required: No
List: No

findMany

Find zero or more Invite

// Get all Invite
const Invite = await prisma.invite.findMany()
// Get first 10 Invite
const Invite = await prisma.invite.findMany({ take: 10 })

Input

Name Type Required
where InviteWhereInput No
orderBy InviteOrderByWithRelationInput[] | InviteOrderByWithRelationInput No
cursor InviteWhereUniqueInput No
take Int No
skip Int No
distinct InviteScalarFieldEnum | InviteScalarFieldEnum[] No

Output

Type: Invite
Required: Yes
List: Yes

create

Create one Invite

// Create one Invite
const Invite = await prisma.invite.create({
  data: {
    // ... data to create a Invite
  }
})

Input

Name Type Required
data InviteCreateInput | InviteUncheckedCreateInput Yes

Output

Type: Invite
Required: Yes
List: No

delete

Delete one Invite

// Delete one Invite
const Invite = await prisma.invite.delete({
  where: {
    // ... filter to delete one Invite
  }
})

Input

Name Type Required
where InviteWhereUniqueInput Yes

Output

Type: Invite
Required: No
List: No

update

Update one Invite

// Update one Invite
const invite = await prisma.invite.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data InviteUpdateInput | InviteUncheckedUpdateInput Yes
where InviteWhereUniqueInput Yes

Output

Type: Invite
Required: No
List: No

deleteMany

Delete zero or more Invite

// Delete a few Invite
const { count } = await prisma.invite.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where InviteWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Invite

const { count } = await prisma.invite.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data InviteUpdateManyMutationInput | InviteUncheckedUpdateManyInput Yes
where InviteWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Invite

// Update or create a Invite
const invite = await prisma.invite.upsert({
  create: {
    // ... data to create a Invite
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Invite we want to update
  }
})

Input

Name Type Required
where InviteWhereUniqueInput Yes
create InviteCreateInput | InviteUncheckedCreateInput Yes
update InviteUpdateInput | InviteUncheckedUpdateInput Yes

Output

Type: Invite
Required: Yes
List: No

Player

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
firstName String?
  • -
No -
lastName String?
  • -
No -
category Category
  • -
Yes -
categoryId String
  • -
Yes -
position PlayerPosition?
  • -
No -
matches Match[]
  • -
Yes -
doubles Double[]
  • -
Yes -
events Event[]
  • -
Yes -
user User?
  • -
No -
invites Invite[]
  • -
Yes -

Operations

findUnique

Find zero or one Player

// Get one Player
const player = await prisma.player.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWhereUniqueInput Yes

Output

Type: Player
Required: No
List: No

findFirst

Find first Player

// Get one Player
const player = await prisma.player.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWhereInput No
orderBy PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput No
cursor PlayerWhereUniqueInput No
take Int No
skip Int No
distinct PlayerScalarFieldEnum | PlayerScalarFieldEnum[] No

Output

Type: Player
Required: No
List: No

findMany

Find zero or more Player

// Get all Player
const Player = await prisma.player.findMany()
// Get first 10 Player
const Player = await prisma.player.findMany({ take: 10 })

Input

Name Type Required
where PlayerWhereInput No
orderBy PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput No
cursor PlayerWhereUniqueInput No
take Int No
skip Int No
distinct PlayerScalarFieldEnum | PlayerScalarFieldEnum[] No

Output

Type: Player
Required: Yes
List: Yes

create

Create one Player

// Create one Player
const Player = await prisma.player.create({
  data: {
    // ... data to create a Player
  }
})

Input

Name Type Required
data PlayerCreateInput | PlayerUncheckedCreateInput Yes

Output

Type: Player
Required: Yes
List: No

delete

Delete one Player

// Delete one Player
const Player = await prisma.player.delete({
  where: {
    // ... filter to delete one Player
  }
})

Input

Name Type Required
where PlayerWhereUniqueInput Yes

Output

Type: Player
Required: No
List: No

update

Update one Player

// Update one Player
const player = await prisma.player.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerUpdateInput | PlayerUncheckedUpdateInput Yes
where PlayerWhereUniqueInput Yes

Output

Type: Player
Required: No
List: No

deleteMany

Delete zero or more Player

// Delete a few Player
const { count } = await prisma.player.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlayerWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Player

const { count } = await prisma.player.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyInput Yes
where PlayerWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Player

// Update or create a Player
const player = await prisma.player.upsert({
  create: {
    // ... data to create a Player
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Player we want to update
  }
})

Input

Name Type Required
where PlayerWhereUniqueInput Yes
create PlayerCreateInput | PlayerUncheckedCreateInput Yes
update PlayerUpdateInput | PlayerUncheckedUpdateInput Yes

Output

Type: Player
Required: Yes
List: No

Double

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
players Player[]
  • -
Yes -
matches Match[]
  • -
Yes -
category Category
  • -
Yes -
categoryId String
  • -
Yes -
games Game[]
  • -
Yes -
sets Set[]
  • -
Yes -
matchesWins Match[]
  • -
Yes -
setsWins Set[]
  • -
Yes -
gamesWins Game[]
  • -
Yes -
eventRequests EventRequest[]
  • -
Yes -
eventDouble EventDouble[]
  • -
Yes -
invites Invite[]
  • -
Yes -
firstPlaceInGroups DoublesGroup[]
  • -
Yes -
secondPlaceInGroups DoublesGroup[]
  • -
Yes -

Operations

findUnique

Find zero or one Double

// Get one Double
const double = await prisma.double.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DoubleWhereUniqueInput Yes

Output

Type: Double
Required: No
List: No

findFirst

Find first Double

// Get one Double
const double = await prisma.double.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DoubleWhereInput No
orderBy DoubleOrderByWithRelationInput[] | DoubleOrderByWithRelationInput No
cursor DoubleWhereUniqueInput No
take Int No
skip Int No
distinct DoubleScalarFieldEnum | DoubleScalarFieldEnum[] No

Output

Type: Double
Required: No
List: No

findMany

Find zero or more Double

// Get all Double
const Double = await prisma.double.findMany()
// Get first 10 Double
const Double = await prisma.double.findMany({ take: 10 })

Input

Name Type Required
where DoubleWhereInput No
orderBy DoubleOrderByWithRelationInput[] | DoubleOrderByWithRelationInput No
cursor DoubleWhereUniqueInput No
take Int No
skip Int No
distinct DoubleScalarFieldEnum | DoubleScalarFieldEnum[] No

Output

Type: Double
Required: Yes
List: Yes

create

Create one Double

// Create one Double
const Double = await prisma.double.create({
  data: {
    // ... data to create a Double
  }
})

Input

Name Type Required
data DoubleCreateInput | DoubleUncheckedCreateInput Yes

Output

Type: Double
Required: Yes
List: No

delete

Delete one Double

// Delete one Double
const Double = await prisma.double.delete({
  where: {
    // ... filter to delete one Double
  }
})

Input

Name Type Required
where DoubleWhereUniqueInput Yes

Output

Type: Double
Required: No
List: No

update

Update one Double

// Update one Double
const double = await prisma.double.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DoubleUpdateInput | DoubleUncheckedUpdateInput Yes
where DoubleWhereUniqueInput Yes

Output

Type: Double
Required: No
List: No

deleteMany

Delete zero or more Double

// Delete a few Double
const { count } = await prisma.double.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DoubleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Double

const { count } = await prisma.double.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyInput Yes
where DoubleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Double

// Update or create a Double
const double = await prisma.double.upsert({
  create: {
    // ... data to create a Double
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Double we want to update
  }
})

Input

Name Type Required
where DoubleWhereUniqueInput Yes
create DoubleCreateInput | DoubleUncheckedCreateInput Yes
update DoubleUpdateInput | DoubleUncheckedUpdateInput Yes

Output

Type: Double
Required: Yes
List: No

Place

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String?
  • -
No -
address String?
  • @unique
No -
events Event[]
  • -
Yes -
courts Court[]
  • -
Yes -

Operations

findUnique

Find zero or one Place

// Get one Place
const place = await prisma.place.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlaceWhereUniqueInput Yes

Output

Type: Place
Required: No
List: No

findFirst

Find first Place

// Get one Place
const place = await prisma.place.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlaceWhereInput No
orderBy PlaceOrderByWithRelationInput[] | PlaceOrderByWithRelationInput No
cursor PlaceWhereUniqueInput No
take Int No
skip Int No
distinct PlaceScalarFieldEnum | PlaceScalarFieldEnum[] No

Output

Type: Place
Required: No
List: No

findMany

Find zero or more Place

// Get all Place
const Place = await prisma.place.findMany()
// Get first 10 Place
const Place = await prisma.place.findMany({ take: 10 })

Input

Name Type Required
where PlaceWhereInput No
orderBy PlaceOrderByWithRelationInput[] | PlaceOrderByWithRelationInput No
cursor PlaceWhereUniqueInput No
take Int No
skip Int No
distinct PlaceScalarFieldEnum | PlaceScalarFieldEnum[] No

Output

Type: Place
Required: Yes
List: Yes

create

Create one Place

// Create one Place
const Place = await prisma.place.create({
  data: {
    // ... data to create a Place
  }
})

Input

Name Type Required
data PlaceCreateInput | PlaceUncheckedCreateInput No

Output

Type: Place
Required: Yes
List: No

delete

Delete one Place

// Delete one Place
const Place = await prisma.place.delete({
  where: {
    // ... filter to delete one Place
  }
})

Input

Name Type Required
where PlaceWhereUniqueInput Yes

Output

Type: Place
Required: No
List: No

update

Update one Place

// Update one Place
const place = await prisma.place.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlaceUpdateInput | PlaceUncheckedUpdateInput Yes
where PlaceWhereUniqueInput Yes

Output

Type: Place
Required: No
List: No

deleteMany

Delete zero or more Place

// Delete a few Place
const { count } = await prisma.place.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PlaceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Place

const { count } = await prisma.place.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PlaceUpdateManyMutationInput | PlaceUncheckedUpdateManyInput Yes
where PlaceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Place

// Update or create a Place
const place = await prisma.place.upsert({
  create: {
    // ... data to create a Place
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Place we want to update
  }
})

Input

Name Type Required
where PlaceWhereUniqueInput Yes
create PlaceCreateInput | PlaceUncheckedCreateInput Yes
update PlaceUpdateInput | PlaceUncheckedUpdateInput Yes

Output

Type: Place
Required: Yes
List: No

Types

Input Types

EventWhereInput

Name Type Nullable
AND EventWhereInput | EventWhereInput[] No
OR EventWhereInput[] No
NOT EventWhereInput | EventWhereInput[] No
id StringFilter | String No
name StringFilter | String No
isActive BoolFilter | Boolean No
isFinished BoolFilter | Boolean No
startDate DateTimeNullableFilter | DateTime | Null Yes
finishDate DateTimeNullableFilter | DateTime | Null Yes
matchDurationInMinutes IntNullableFilter | Int | Null Yes
timeOfFirstMatch IntNullableFilter | Int | Null Yes
timeOfLastMatch IntNullableFilter | Int | Null Yes
eventType EnumEventTypeFilter | EventType No
matchType EnumMatchTypeFilter | MatchType No
isGroupMatchesFinished BoolFilter | Boolean No
categories CategoryListRelationFilter No
players PlayerListRelationFilter No
matches MatchListRelationFilter No
places PlaceListRelationFilter No
eventRequests EventRequestListRelationFilter No
eventDoubles EventDoubleListRelationFilter No
games GameListRelationFilter No
sets SetListRelationFilter No
matchDates MatchDateListRelationFilter No
courts CourtListRelationFilter No
invite InviteNullableRelationFilter | InviteWhereInput | Null Yes
categoriesGroups CategoryGroupListRelationFilter No
eventMatches EventMatchListRelationFilter No

EventOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
isActive SortOrder No
isFinished SortOrder No
startDate SortOrder | SortOrderInput No
finishDate SortOrder | SortOrderInput No
matchDurationInMinutes SortOrder | SortOrderInput No
timeOfFirstMatch SortOrder | SortOrderInput No
timeOfLastMatch SortOrder | SortOrderInput No
eventType SortOrder No
matchType SortOrder No
isGroupMatchesFinished SortOrder No
categories CategoryOrderByRelationAggregateInput No
players PlayerOrderByRelationAggregateInput No
matches MatchOrderByRelationAggregateInput No
places PlaceOrderByRelationAggregateInput No
eventRequests EventRequestOrderByRelationAggregateInput No
eventDoubles EventDoubleOrderByRelationAggregateInput No
games GameOrderByRelationAggregateInput No
sets SetOrderByRelationAggregateInput No
matchDates MatchDateOrderByRelationAggregateInput No
courts CourtOrderByRelationAggregateInput No
invite InviteOrderByWithRelationInput No
categoriesGroups CategoryGroupOrderByRelationAggregateInput No
eventMatches EventMatchOrderByRelationAggregateInput No

EventWhereUniqueInput

Name Type Nullable
id String No
AND EventWhereInput | EventWhereInput[] No
OR EventWhereInput[] No
NOT EventWhereInput | EventWhereInput[] No
name StringFilter | String No
isActive BoolFilter | Boolean No
isFinished BoolFilter | Boolean No
startDate DateTimeNullableFilter | DateTime | Null Yes
finishDate DateTimeNullableFilter | DateTime | Null Yes
matchDurationInMinutes IntNullableFilter | Int | Null Yes
timeOfFirstMatch IntNullableFilter | Int | Null Yes
timeOfLastMatch IntNullableFilter | Int | Null Yes
eventType EnumEventTypeFilter | EventType No
matchType EnumMatchTypeFilter | MatchType No
isGroupMatchesFinished BoolFilter | Boolean No
categories CategoryListRelationFilter No
players PlayerListRelationFilter No
matches MatchListRelationFilter No
places PlaceListRelationFilter No
eventRequests EventRequestListRelationFilter No
eventDoubles EventDoubleListRelationFilter No
games GameListRelationFilter No
sets SetListRelationFilter No
matchDates MatchDateListRelationFilter No
courts CourtListRelationFilter No
invite InviteNullableRelationFilter | InviteWhereInput | Null Yes
categoriesGroups CategoryGroupListRelationFilter No
eventMatches EventMatchListRelationFilter No

EventOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
isActive SortOrder No
isFinished SortOrder No
startDate SortOrder | SortOrderInput No
finishDate SortOrder | SortOrderInput No
matchDurationInMinutes SortOrder | SortOrderInput No
timeOfFirstMatch SortOrder | SortOrderInput No
timeOfLastMatch SortOrder | SortOrderInput No
eventType SortOrder No
matchType SortOrder No
isGroupMatchesFinished SortOrder No
_count EventCountOrderByAggregateInput No
_avg EventAvgOrderByAggregateInput No
_max EventMaxOrderByAggregateInput No
_min EventMinOrderByAggregateInput No
_sum EventSumOrderByAggregateInput No

EventScalarWhereWithAggregatesInput

Name Type Nullable
AND EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] No
OR EventScalarWhereWithAggregatesInput[] No
NOT EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
isActive BoolWithAggregatesFilter | Boolean No
isFinished BoolWithAggregatesFilter | Boolean No
startDate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
finishDate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
matchDurationInMinutes IntNullableWithAggregatesFilter | Int | Null Yes
timeOfFirstMatch IntNullableWithAggregatesFilter | Int | Null Yes
timeOfLastMatch IntNullableWithAggregatesFilter | Int | Null Yes
eventType EnumEventTypeWithAggregatesFilter | EventType No
matchType EnumMatchTypeWithAggregatesFilter | MatchType No
isGroupMatchesFinished BoolWithAggregatesFilter | Boolean No

CategoryGroupWhereInput

Name Type Nullable
AND CategoryGroupWhereInput | CategoryGroupWhereInput[] No
OR CategoryGroupWhereInput[] No
NOT CategoryGroupWhereInput | CategoryGroupWhereInput[] No
id StringFilter | String No
categoryId StringFilter | String No
eventId StringNullableFilter | String | Null Yes
groupsStageFinished BoolFilter | Boolean No
category CategoryRelationFilter | CategoryWhereInput No
groups DoublesGroupListRelationFilter No
event EventNullableRelationFilter | EventWhereInput | Null Yes
finalMatches EventMatchListRelationFilter No

CategoryGroupOrderByWithRelationInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No
eventId SortOrder | SortOrderInput No
groupsStageFinished SortOrder No
category CategoryOrderByWithRelationInput No
groups DoublesGroupOrderByRelationAggregateInput No
event EventOrderByWithRelationInput No
finalMatches EventMatchOrderByRelationAggregateInput No

CategoryGroupWhereUniqueInput

Name Type Nullable
id String No
eventId_categoryId CategoryGroupEventIdCategoryIdCompoundUniqueInput No
AND CategoryGroupWhereInput | CategoryGroupWhereInput[] No
OR CategoryGroupWhereInput[] No
NOT CategoryGroupWhereInput | CategoryGroupWhereInput[] No
categoryId StringFilter | String No
eventId StringNullableFilter | String | Null Yes
groupsStageFinished BoolFilter | Boolean No
category CategoryRelationFilter | CategoryWhereInput No
groups DoublesGroupListRelationFilter No
event EventNullableRelationFilter | EventWhereInput | Null Yes
finalMatches EventMatchListRelationFilter No

CategoryGroupOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No
eventId SortOrder | SortOrderInput No
groupsStageFinished SortOrder No
_count CategoryGroupCountOrderByAggregateInput No
_max CategoryGroupMaxOrderByAggregateInput No
_min CategoryGroupMinOrderByAggregateInput No


DoublesGroupWhereInput

Name Type Nullable
AND DoublesGroupWhereInput | DoublesGroupWhereInput[] No
OR DoublesGroupWhereInput[] No
NOT DoublesGroupWhereInput | DoublesGroupWhereInput[] No
id StringFilter | String No
key StringFilter | String No
categoryGroupId StringNullableFilter | String | Null Yes
firstPlaceDoublesId StringNullableFilter | String | Null Yes
secondPlaceDoublesId StringNullableFilter | String | Null Yes
eventDoubles EventDoubleListRelationFilter No
categoryGroup CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null Yes
firstPlace DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
secondPlace DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
groupMatches EventMatchListRelationFilter No

DoublesGroupOrderByWithRelationInput

Name Type Nullable
id SortOrder No
key SortOrder No
categoryGroupId SortOrder | SortOrderInput No
firstPlaceDoublesId SortOrder | SortOrderInput No
secondPlaceDoublesId SortOrder | SortOrderInput No
eventDoubles EventDoubleOrderByRelationAggregateInput No
categoryGroup CategoryGroupOrderByWithRelationInput No
firstPlace DoubleOrderByWithRelationInput No
secondPlace DoubleOrderByWithRelationInput No
groupMatches EventMatchOrderByRelationAggregateInput No

DoublesGroupWhereUniqueInput

Name Type Nullable
id String No
AND DoublesGroupWhereInput | DoublesGroupWhereInput[] No
OR DoublesGroupWhereInput[] No
NOT DoublesGroupWhereInput | DoublesGroupWhereInput[] No
key StringFilter | String No
categoryGroupId StringNullableFilter | String | Null Yes
firstPlaceDoublesId StringNullableFilter | String | Null Yes
secondPlaceDoublesId StringNullableFilter | String | Null Yes
eventDoubles EventDoubleListRelationFilter No
categoryGroup CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null Yes
firstPlace DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
secondPlace DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
groupMatches EventMatchListRelationFilter No

DoublesGroupOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
key SortOrder No
categoryGroupId SortOrder | SortOrderInput No
firstPlaceDoublesId SortOrder | SortOrderInput No
secondPlaceDoublesId SortOrder | SortOrderInput No
_count DoublesGroupCountOrderByAggregateInput No
_max DoublesGroupMaxOrderByAggregateInput No
_min DoublesGroupMinOrderByAggregateInput No



EventRequestOrderByWithRelationInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
status SortOrder No
event EventOrderByWithRelationInput No
double DoubleOrderByWithRelationInput No
category CategoryOrderByWithRelationInput No


EventRequestOrderByWithAggregationInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
status SortOrder No
_count EventRequestCountOrderByAggregateInput No
_max EventRequestMaxOrderByAggregateInput No
_min EventRequestMinOrderByAggregateInput No


CourtWhereInput

Name Type Nullable
AND CourtWhereInput | CourtWhereInput[] No
OR CourtWhereInput[] No
NOT CourtWhereInput | CourtWhereInput[] No
id StringFilter | String No
name StringFilter | String No
isAvailable BoolFilter | Boolean No
placeId StringFilter | String No
events EventListRelationFilter No
matches MatchListRelationFilter No
place PlaceRelationFilter | PlaceWhereInput No
matchDates MatchDateListRelationFilter No

CourtOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
isAvailable SortOrder No
placeId SortOrder No
events EventOrderByRelationAggregateInput No
matches MatchOrderByRelationAggregateInput No
place PlaceOrderByWithRelationInput No
matchDates MatchDateOrderByRelationAggregateInput No

CourtWhereUniqueInput

Name Type Nullable
id String No
name_placeId CourtNamePlaceIdCompoundUniqueInput No
AND CourtWhereInput | CourtWhereInput[] No
OR CourtWhereInput[] No
NOT CourtWhereInput | CourtWhereInput[] No
name StringFilter | String No
isAvailable BoolFilter | Boolean No
placeId StringFilter | String No
events EventListRelationFilter No
matches MatchListRelationFilter No
place PlaceRelationFilter | PlaceWhereInput No
matchDates MatchDateListRelationFilter No

CourtOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
isAvailable SortOrder No
placeId SortOrder No
_count CourtCountOrderByAggregateInput No
_max CourtMaxOrderByAggregateInput No
_min CourtMinOrderByAggregateInput No


EventDoubleWhereInput

Name Type Nullable
AND EventDoubleWhereInput | EventDoubleWhereInput[] No
OR EventDoubleWhereInput[] No
NOT EventDoubleWhereInput | EventDoubleWhereInput[] No
eventId StringFilter | String No
doubleId StringFilter | String No
categoryId StringFilter | String No
atRestId StringNullableFilter | String | Null Yes
doublesGroupId StringNullableFilter | String | Null Yes
event EventRelationFilter | EventWhereInput No
double DoubleRelationFilter | DoubleWhereInput No
category CategoryRelationFilter | CategoryWhereInput No
atRest MatchDateNullableRelationFilter | MatchDateWhereInput | Null Yes
DoublesGroup DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null Yes

EventDoubleOrderByWithRelationInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
atRestId SortOrder | SortOrderInput No
doublesGroupId SortOrder | SortOrderInput No
event EventOrderByWithRelationInput No
double DoubleOrderByWithRelationInput No
category CategoryOrderByWithRelationInput No
atRest MatchDateOrderByWithRelationInput No
DoublesGroup DoublesGroupOrderByWithRelationInput No

EventDoubleWhereUniqueInput

Name Type Nullable
eventId_doubleId_categoryId EventDoubleEventIdDoubleIdCategoryIdCompoundUniqueInput No
AND EventDoubleWhereInput | EventDoubleWhereInput[] No
OR EventDoubleWhereInput[] No
NOT EventDoubleWhereInput | EventDoubleWhereInput[] No
eventId StringFilter | String No
doubleId StringFilter | String No
categoryId StringFilter | String No
atRestId StringNullableFilter | String | Null Yes
doublesGroupId StringNullableFilter | String | Null Yes
event EventRelationFilter | EventWhereInput No
double DoubleRelationFilter | DoubleWhereInput No
category CategoryRelationFilter | CategoryWhereInput No
atRest MatchDateNullableRelationFilter | MatchDateWhereInput | Null Yes
DoublesGroup DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null Yes

EventDoubleOrderByWithAggregationInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
atRestId SortOrder | SortOrderInput No
doublesGroupId SortOrder | SortOrderInput No
_count EventDoubleCountOrderByAggregateInput No
_max EventDoubleMaxOrderByAggregateInput No
_min EventDoubleMinOrderByAggregateInput No





CategoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
level SortOrder No
type SortOrder No
_count CategoryCountOrderByAggregateInput No
_avg CategoryAvgOrderByAggregateInput No
_max CategoryMaxOrderByAggregateInput No
_min CategoryMinOrderByAggregateInput No
_sum CategorySumOrderByAggregateInput No


EventMatchWhereInput

Name Type Nullable
AND EventMatchWhereInput | EventMatchWhereInput[] No
OR EventMatchWhereInput[] No
NOT EventMatchWhereInput | EventMatchWhereInput[] No
number IntFilter | Int No
type EnumEventMatchTypeFilter | EventMatchType No
eventId StringFilter | String No
matchId StringFilter | String No
categoryGroupId StringNullableFilter | String | Null Yes
doublesGroupId StringNullableFilter | String | Null Yes
event EventRelationFilter | EventWhereInput No
match MatchRelationFilter | MatchWhereInput No
matchesWinnersRef MatchListRelationFilter No
categoryGroup CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null Yes
doublesGroup DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null Yes

EventMatchOrderByWithRelationInput

Name Type Nullable
number SortOrder No
type SortOrder No
eventId SortOrder No
matchId SortOrder No
categoryGroupId SortOrder | SortOrderInput No
doublesGroupId SortOrder | SortOrderInput No
event EventOrderByWithRelationInput No
match MatchOrderByWithRelationInput No
matchesWinnersRef MatchOrderByRelationAggregateInput No
categoryGroup CategoryGroupOrderByWithRelationInput No
doublesGroup DoublesGroupOrderByWithRelationInput No

EventMatchWhereUniqueInput

Name Type Nullable
matchId String No
eventId_matchId EventMatchEventIdMatchIdCompoundUniqueInput No
AND EventMatchWhereInput | EventMatchWhereInput[] No
OR EventMatchWhereInput[] No
NOT EventMatchWhereInput | EventMatchWhereInput[] No
number IntFilter | Int No
type EnumEventMatchTypeFilter | EventMatchType No
eventId StringFilter | String No
categoryGroupId StringNullableFilter | String | Null Yes
doublesGroupId StringNullableFilter | String | Null Yes
event EventRelationFilter | EventWhereInput No
match MatchRelationFilter | MatchWhereInput No
matchesWinnersRef MatchListRelationFilter No
categoryGroup CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null Yes
doublesGroup DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null Yes

EventMatchOrderByWithAggregationInput

Name Type Nullable
number SortOrder No
type SortOrder No
eventId SortOrder No
matchId SortOrder No
categoryGroupId SortOrder | SortOrderInput No
doublesGroupId SortOrder | SortOrderInput No
_count EventMatchCountOrderByAggregateInput No
_avg EventMatchAvgOrderByAggregateInput No
_max EventMatchMaxOrderByAggregateInput No
_min EventMatchMinOrderByAggregateInput No
_sum EventMatchSumOrderByAggregateInput No


MatchWhereInput

Name Type Nullable
AND MatchWhereInput | MatchWhereInput[] No
OR MatchWhereInput[] No
NOT MatchWhereInput | MatchWhereInput[] No
id StringFilter | String No
isFinished BoolFilter | Boolean No
categoryId StringNullableFilter | String | Null Yes
winnerDoublesId StringNullableFilter | String | Null Yes
eventId StringNullableFilter | String | Null Yes
type EnumMatchTypeFilter | MatchType No
courtId StringNullableFilter | String | Null Yes
winnerRefId StringNullableFilter | String | Null Yes
players PlayerListRelationFilter No
category CategoryNullableRelationFilter | CategoryWhereInput | Null Yes
winner DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
sets SetListRelationFilter No
doubles DoubleListRelationFilter No
event EventNullableRelationFilter | EventWhereInput | Null Yes
matchDate MatchDateNullableRelationFilter | MatchDateWhereInput | Null Yes
court CourtNullableRelationFilter | CourtWhereInput | Null Yes
invite InviteNullableRelationFilter | InviteWhereInput | Null Yes
eventMatch EventMatchNullableRelationFilter | EventMatchWhereInput | Null Yes
winnerRef EventMatchNullableRelationFilter | EventMatchWhereInput | Null Yes


MatchWhereUniqueInput

Name Type Nullable
id String No
AND MatchWhereInput | MatchWhereInput[] No
OR MatchWhereInput[] No
NOT MatchWhereInput | MatchWhereInput[] No
isFinished BoolFilter | Boolean No
categoryId StringNullableFilter | String | Null Yes
winnerDoublesId StringNullableFilter | String | Null Yes
eventId StringNullableFilter | String | Null Yes
type EnumMatchTypeFilter | MatchType No
courtId StringNullableFilter | String | Null Yes
winnerRefId StringNullableFilter | String | Null Yes
players PlayerListRelationFilter No
category CategoryNullableRelationFilter | CategoryWhereInput | Null Yes
winner DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
sets SetListRelationFilter No
doubles DoubleListRelationFilter No
event EventNullableRelationFilter | EventWhereInput | Null Yes
matchDate MatchDateNullableRelationFilter | MatchDateWhereInput | Null Yes
court CourtNullableRelationFilter | CourtWhereInput | Null Yes
invite InviteNullableRelationFilter | InviteWhereInput | Null Yes
eventMatch EventMatchNullableRelationFilter | EventMatchWhereInput | Null Yes
winnerRef EventMatchNullableRelationFilter | EventMatchWhereInput | Null Yes

MatchOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
isFinished SortOrder No
categoryId SortOrder | SortOrderInput No
winnerDoublesId SortOrder | SortOrderInput No
eventId SortOrder | SortOrderInput No
type SortOrder No
courtId SortOrder | SortOrderInput No
winnerRefId SortOrder | SortOrderInput No
_count MatchCountOrderByAggregateInput No
_max MatchMaxOrderByAggregateInput No
_min MatchMinOrderByAggregateInput No

MatchScalarWhereWithAggregatesInput

Name Type Nullable
AND MatchScalarWhereWithAggregatesInput | MatchScalarWhereWithAggregatesInput[] No
OR MatchScalarWhereWithAggregatesInput[] No
NOT MatchScalarWhereWithAggregatesInput | MatchScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
isFinished BoolWithAggregatesFilter | Boolean No
categoryId StringNullableWithAggregatesFilter | String | Null Yes
winnerDoublesId StringNullableWithAggregatesFilter | String | Null Yes
eventId StringNullableWithAggregatesFilter | String | Null Yes
type EnumMatchTypeWithAggregatesFilter | MatchType No
courtId StringNullableWithAggregatesFilter | String | Null Yes
winnerRefId StringNullableWithAggregatesFilter | String | Null Yes

MatchDateWhereInput

Name Type Nullable
AND MatchDateWhereInput | MatchDateWhereInput[] No
OR MatchDateWhereInput[] No
NOT MatchDateWhereInput | MatchDateWhereInput[] No
id StringFilter | String No
eventId StringFilter | String No
matchId StringNullableFilter | String | Null Yes
start DateTimeFilter | DateTime No
finish DateTimeFilter | DateTime No
courtId StringFilter | String No
event EventRelationFilter | EventWhereInput No
match MatchNullableRelationFilter | MatchWhereInput | Null Yes
court CourtRelationFilter | CourtWhereInput No
atRest EventDoubleListRelationFilter No

MatchDateOrderByWithRelationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
matchId SortOrder | SortOrderInput No
start SortOrder No
finish SortOrder No
courtId SortOrder No
event EventOrderByWithRelationInput No
match MatchOrderByWithRelationInput No
court CourtOrderByWithRelationInput No
atRest EventDoubleOrderByRelationAggregateInput No

MatchDateWhereUniqueInput

Name Type Nullable
id String No
matchId String No
eventId_start_finish_courtId MatchDateEventIdStartFinishCourtIdCompoundUniqueInput No
AND MatchDateWhereInput | MatchDateWhereInput[] No
OR MatchDateWhereInput[] No
NOT MatchDateWhereInput | MatchDateWhereInput[] No
eventId StringFilter | String No
start DateTimeFilter | DateTime No
finish DateTimeFilter | DateTime No
courtId StringFilter | String No
event EventRelationFilter | EventWhereInput No
match MatchNullableRelationFilter | MatchWhereInput | Null Yes
court CourtRelationFilter | CourtWhereInput No
atRest EventDoubleListRelationFilter No

MatchDateOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
matchId SortOrder | SortOrderInput No
start SortOrder No
finish SortOrder No
courtId SortOrder No
_count MatchDateCountOrderByAggregateInput No
_max MatchDateMaxOrderByAggregateInput No
_min MatchDateMinOrderByAggregateInput No


SetWhereInput

Name Type Nullable
AND SetWhereInput | SetWhereInput[] No
OR SetWhereInput[] No
NOT SetWhereInput | SetWhereInput[] No
id StringFilter | String No
type EnumSetTypeFilter | SetType No
number IntFilter | Int No
setWinnerId StringNullableFilter | String | Null Yes
result StringNullableFilter | String | Null Yes
matchId StringFilter | String No
isFinished BoolFilter | Boolean No
doubles DoubleListRelationFilter No
winner DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
match MatchRelationFilter | MatchWhereInput No
games GameListRelationFilter No
events EventListRelationFilter No

SetOrderByWithRelationInput

Name Type Nullable
id SortOrder No
type SortOrder No
number SortOrder No
setWinnerId SortOrder | SortOrderInput No
result SortOrder | SortOrderInput No
matchId SortOrder No
isFinished SortOrder No
doubles DoubleOrderByRelationAggregateInput No
winner DoubleOrderByWithRelationInput No
match MatchOrderByWithRelationInput No
games GameOrderByRelationAggregateInput No
events EventOrderByRelationAggregateInput No

SetWhereUniqueInput

Name Type Nullable
id String No
AND SetWhereInput | SetWhereInput[] No
OR SetWhereInput[] No
NOT SetWhereInput | SetWhereInput[] No
type EnumSetTypeFilter | SetType No
number IntFilter | Int No
setWinnerId StringNullableFilter | String | Null Yes
result StringNullableFilter | String | Null Yes
matchId StringFilter | String No
isFinished BoolFilter | Boolean No
doubles DoubleListRelationFilter No
winner DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
match MatchRelationFilter | MatchWhereInput No
games GameListRelationFilter No
events EventListRelationFilter No

SetOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
type SortOrder No
number SortOrder No
setWinnerId SortOrder | SortOrderInput No
result SortOrder | SortOrderInput No
matchId SortOrder No
isFinished SortOrder No
_count SetCountOrderByAggregateInput No
_avg SetAvgOrderByAggregateInput No
_max SetMaxOrderByAggregateInput No
_min SetMinOrderByAggregateInput No
_sum SetSumOrderByAggregateInput No


GameWhereInput

Name Type Nullable
AND GameWhereInput | GameWhereInput[] No
OR GameWhereInput[] No
NOT GameWhereInput | GameWhereInput[] No
id StringFilter | String No
setId StringFilter | String No
winnerId StringNullableFilter | String | Null Yes
set SetRelationFilter | SetWhereInput No
doubles DoubleListRelationFilter No
winner DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
events EventListRelationFilter No

GameOrderByWithRelationInput

Name Type Nullable
id SortOrder No
setId SortOrder No
winnerId SortOrder | SortOrderInput No
set SetOrderByWithRelationInput No
doubles DoubleOrderByRelationAggregateInput No
winner DoubleOrderByWithRelationInput No
events EventOrderByRelationAggregateInput No

GameWhereUniqueInput

Name Type Nullable
id String No
AND GameWhereInput | GameWhereInput[] No
OR GameWhereInput[] No
NOT GameWhereInput | GameWhereInput[] No
setId StringFilter | String No
winnerId StringNullableFilter | String | Null Yes
set SetRelationFilter | SetWhereInput No
doubles DoubleListRelationFilter No
winner DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
events EventListRelationFilter No

GameOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
setId SortOrder No
winnerId SortOrder | SortOrderInput No
_count GameCountOrderByAggregateInput No
_max GameMaxOrderByAggregateInput No
_min GameMinOrderByAggregateInput No


UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id StringFilter | String No
firstName StringNullableFilter | String | Null Yes
lastName StringNullableFilter | String | Null Yes
email StringFilter | String No
password StringFilter | String No
dob DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
playerId StringNullableFilter | String | Null Yes
role EnumRoleFilter | Role No
hashedRt StringNullableFilter | String | Null Yes
profileImage StringNullableFilter | String | Null Yes
player PlayerNullableRelationFilter | PlayerWhereInput | Null Yes

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder | SortOrderInput No
email SortOrder No
password SortOrder No
dob SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
playerId SortOrder | SortOrderInput No
role SortOrder No
hashedRt SortOrder | SortOrderInput No
profileImage SortOrder | SortOrderInput No
player PlayerOrderByWithRelationInput No

UserWhereUniqueInput

Name Type Nullable
id String No
email String No
playerId String No
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
firstName StringNullableFilter | String | Null Yes
lastName StringNullableFilter | String | Null Yes
password StringFilter | String No
dob DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
role EnumRoleFilter | Role No
hashedRt StringNullableFilter | String | Null Yes
profileImage StringNullableFilter | String | Null Yes
player PlayerNullableRelationFilter | PlayerWhereInput | Null Yes

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder | SortOrderInput No
email SortOrder No
password SortOrder No
dob SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
playerId SortOrder | SortOrderInput No
role SortOrder No
hashedRt SortOrder | SortOrderInput No
profileImage SortOrder | SortOrderInput No
_count UserCountOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
firstName StringNullableWithAggregatesFilter | String | Null Yes
lastName StringNullableWithAggregatesFilter | String | Null Yes
email StringWithAggregatesFilter | String No
password StringWithAggregatesFilter | String No
dob DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
playerId StringNullableWithAggregatesFilter | String | Null Yes
role EnumRoleWithAggregatesFilter | Role No
hashedRt StringNullableWithAggregatesFilter | String | Null Yes
profileImage StringNullableWithAggregatesFilter | String | Null Yes

InviteWhereInput

Name Type Nullable
AND InviteWhereInput | InviteWhereInput[] No
OR InviteWhereInput[] No
NOT InviteWhereInput | InviteWhereInput[] No
id StringFilter | String No
inviteType EnumInviteTypeFilter | InviteType No
doublesId StringNullableFilter | String | Null Yes
eventId StringNullableFilter | String | Null Yes
matchId StringNullableFilter | String | Null Yes
inviterId StringFilter | String No
invitedId StringFilter | String No
createdAt DateTimeFilter | DateTime No
players PlayerListRelationFilter No
double DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
event EventNullableRelationFilter | EventWhereInput | Null Yes
match MatchNullableRelationFilter | MatchWhereInput | Null Yes

InviteOrderByWithRelationInput

Name Type Nullable
id SortOrder No
inviteType SortOrder No
doublesId SortOrder | SortOrderInput No
eventId SortOrder | SortOrderInput No
matchId SortOrder | SortOrderInput No
inviterId SortOrder No
invitedId SortOrder No
createdAt SortOrder No
players PlayerOrderByRelationAggregateInput No
double DoubleOrderByWithRelationInput No
event EventOrderByWithRelationInput No
match MatchOrderByWithRelationInput No

InviteWhereUniqueInput

Name Type Nullable
id String No
eventId String No
matchId String No
inviterId_invitedId_inviteType InviteInviterIdInvitedIdInviteTypeCompoundUniqueInput No
AND InviteWhereInput | InviteWhereInput[] No
OR InviteWhereInput[] No
NOT InviteWhereInput | InviteWhereInput[] No
inviteType EnumInviteTypeFilter | InviteType No
doublesId StringNullableFilter | String | Null Yes
inviterId StringFilter | String No
invitedId StringFilter | String No
createdAt DateTimeFilter | DateTime No
players PlayerListRelationFilter No
double DoubleNullableRelationFilter | DoubleWhereInput | Null Yes
event EventNullableRelationFilter | EventWhereInput | Null Yes
match MatchNullableRelationFilter | MatchWhereInput | Null Yes

InviteOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
inviteType SortOrder No
doublesId SortOrder | SortOrderInput No
eventId SortOrder | SortOrderInput No
matchId SortOrder | SortOrderInput No
inviterId SortOrder No
invitedId SortOrder No
createdAt SortOrder No
_count InviteCountOrderByAggregateInput No
_max InviteMaxOrderByAggregateInput No
_min InviteMinOrderByAggregateInput No


PlayerWhereInput

Name Type Nullable
AND PlayerWhereInput | PlayerWhereInput[] No
OR PlayerWhereInput[] No
NOT PlayerWhereInput | PlayerWhereInput[] No
id StringFilter | String No
firstName StringNullableFilter | String | Null Yes
lastName StringNullableFilter | String | Null Yes
categoryId StringFilter | String No
position EnumPlayerPositionNullableFilter | PlayerPosition | Null Yes
category CategoryRelationFilter | CategoryWhereInput No
matches MatchListRelationFilter No
doubles DoubleListRelationFilter No
events EventListRelationFilter No
user UserNullableRelationFilter | UserWhereInput | Null Yes
invites InviteListRelationFilter No

PlayerOrderByWithRelationInput

Name Type Nullable
id SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder | SortOrderInput No
categoryId SortOrder No
position SortOrder | SortOrderInput No
category CategoryOrderByWithRelationInput No
matches MatchOrderByRelationAggregateInput No
doubles DoubleOrderByRelationAggregateInput No
events EventOrderByRelationAggregateInput No
user UserOrderByWithRelationInput No
invites InviteOrderByRelationAggregateInput No

PlayerWhereUniqueInput

Name Type Nullable
id String No
AND PlayerWhereInput | PlayerWhereInput[] No
OR PlayerWhereInput[] No
NOT PlayerWhereInput | PlayerWhereInput[] No
firstName StringNullableFilter | String | Null Yes
lastName StringNullableFilter | String | Null Yes
categoryId StringFilter | String No
position EnumPlayerPositionNullableFilter | PlayerPosition | Null Yes
category CategoryRelationFilter | CategoryWhereInput No
matches MatchListRelationFilter No
doubles DoubleListRelationFilter No
events EventListRelationFilter No
user UserNullableRelationFilter | UserWhereInput | Null Yes
invites InviteListRelationFilter No

PlayerOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder | SortOrderInput No
categoryId SortOrder No
position SortOrder | SortOrderInput No
_count PlayerCountOrderByAggregateInput No
_max PlayerMaxOrderByAggregateInput No
_min PlayerMinOrderByAggregateInput No


DoubleWhereInput

Name Type Nullable
AND DoubleWhereInput | DoubleWhereInput[] No
OR DoubleWhereInput[] No
NOT DoubleWhereInput | DoubleWhereInput[] No
id StringFilter | String No
categoryId StringFilter | String No
players PlayerListRelationFilter No
matches MatchListRelationFilter No
category CategoryRelationFilter | CategoryWhereInput No
games GameListRelationFilter No
sets SetListRelationFilter No
matchesWins MatchListRelationFilter No
setsWins SetListRelationFilter No
gamesWins GameListRelationFilter No
eventRequests EventRequestListRelationFilter No
eventDouble EventDoubleListRelationFilter No
invites InviteListRelationFilter No
firstPlaceInGroups DoublesGroupListRelationFilter No
secondPlaceInGroups DoublesGroupListRelationFilter No


DoubleWhereUniqueInput

Name Type Nullable
id String No
AND DoubleWhereInput | DoubleWhereInput[] No
OR DoubleWhereInput[] No
NOT DoubleWhereInput | DoubleWhereInput[] No
categoryId StringFilter | String No
players PlayerListRelationFilter No
matches MatchListRelationFilter No
category CategoryRelationFilter | CategoryWhereInput No
games GameListRelationFilter No
sets SetListRelationFilter No
matchesWins MatchListRelationFilter No
setsWins SetListRelationFilter No
gamesWins GameListRelationFilter No
eventRequests EventRequestListRelationFilter No
eventDouble EventDoubleListRelationFilter No
invites InviteListRelationFilter No
firstPlaceInGroups DoublesGroupListRelationFilter No
secondPlaceInGroups DoublesGroupListRelationFilter No

DoubleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No
_count DoubleCountOrderByAggregateInput No
_max DoubleMaxOrderByAggregateInput No
_min DoubleMinOrderByAggregateInput No


PlaceWhereInput

Name Type Nullable
AND PlaceWhereInput | PlaceWhereInput[] No
OR PlaceWhereInput[] No
NOT PlaceWhereInput | PlaceWhereInput[] No
id StringFilter | String No
name StringNullableFilter | String | Null Yes
address StringNullableFilter | String | Null Yes
events EventListRelationFilter No
courts CourtListRelationFilter No

PlaceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder | SortOrderInput No
address SortOrder | SortOrderInput No
events EventOrderByRelationAggregateInput No
courts CourtOrderByRelationAggregateInput No

PlaceWhereUniqueInput

Name Type Nullable
id String No
address String No
AND PlaceWhereInput | PlaceWhereInput[] No
OR PlaceWhereInput[] No
NOT PlaceWhereInput | PlaceWhereInput[] No
name StringNullableFilter | String | Null Yes
events EventListRelationFilter No
courts CourtListRelationFilter No

PlaceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder | SortOrderInput No
address SortOrder | SortOrderInput No
_count PlaceCountOrderByAggregateInput No
_max PlaceMaxOrderByAggregateInput No
_min PlaceMinOrderByAggregateInput No


EventCreateInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No

EventCreateManyInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No

EventUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No

EventUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No

CategoryGroupCreateInput

Name Type Nullable
id String No
groupsStageFinished Boolean No
category CategoryCreateNestedOneWithoutCategoryGroupInput No
groups DoublesGroupCreateNestedManyWithoutCategoryGroupInput No
event EventCreateNestedOneWithoutCategoriesGroupsInput No
finalMatches EventMatchCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupUncheckedCreateInput

Name Type Nullable
id String No
categoryId String No
eventId String | Null Yes
groupsStageFinished Boolean No
groups DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput No
finalMatches EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput No


CategoryGroupUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
groups DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput No
finalMatches EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput No

CategoryGroupCreateManyInput

Name Type Nullable
id String No
categoryId String No
eventId String | Null Yes
groupsStageFinished Boolean No

CategoryGroupUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No

CategoryGroupUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No


DoublesGroupUncheckedCreateInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
firstPlaceDoublesId String | Null Yes
secondPlaceDoublesId String | Null Yes
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput No
groupMatches EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput No


DoublesGroupUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventDoubles EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput No
groupMatches EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput No

DoublesGroupCreateManyInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
firstPlaceDoublesId String | Null Yes
secondPlaceDoublesId String | Null Yes

DoublesGroupUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No

DoublesGroupUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes


EventRequestUncheckedCreateInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
status RequestStatus No


EventRequestUncheckedUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No

EventRequestCreateManyInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
status RequestStatus No

EventRequestUpdateManyMutationInput

Name Type Nullable
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No

EventRequestUncheckedUpdateManyInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No

CourtCreateInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
events EventCreateNestedManyWithoutCourtsInput No
matches MatchCreateNestedManyWithoutCourtInput No
place PlaceCreateNestedOneWithoutCourtsInput No
matchDates MatchDateCreateNestedManyWithoutCourtInput No

CourtUncheckedCreateInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
placeId String No
events EventUncheckedCreateNestedManyWithoutCourtsInput No
matches MatchUncheckedCreateNestedManyWithoutCourtInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutCourtInput No



CourtCreateManyInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
placeId String No

CourtUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No

CourtUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
placeId String | StringFieldUpdateOperationsInput No


EventDoubleUncheckedCreateInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes


EventDoubleUncheckedUpdateInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventDoubleCreateManyInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes

EventDoubleUpdateManyMutationInput

Name Type Nullable

EventDoubleUncheckedUpdateManyInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes





CategoryCreateManyInput

Name Type Nullable
id String No
level Int No
type CatType No

CategoryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
type CatType | EnumCatTypeFieldUpdateOperationsInput No

CategoryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
type CatType | EnumCatTypeFieldUpdateOperationsInput No


EventMatchUncheckedCreateInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
categoryGroupId String | Null Yes
doublesGroupId String | Null Yes
matchesWinnersRef MatchUncheckedCreateNestedManyWithoutWinnerRefInput No


EventMatchUncheckedUpdateInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchesWinnersRef MatchUncheckedUpdateManyWithoutWinnerRefNestedInput No

EventMatchCreateManyInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
categoryGroupId String | Null Yes
doublesGroupId String | Null Yes

EventMatchUpdateManyMutationInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No

EventMatchUncheckedUpdateManyInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes


MatchUncheckedCreateInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No


MatchUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchCreateManyInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes

MatchUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No

MatchUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes

MatchDateCreateInput

Name Type Nullable
id String No
start DateTime No
finish DateTime No
event EventCreateNestedOneWithoutMatchDatesInput No
match MatchCreateNestedOneWithoutMatchDateInput No
court CourtCreateNestedOneWithoutMatchDatesInput No
atRest EventDoubleCreateNestedManyWithoutAtRestInput No

MatchDateUncheckedCreateInput

Name Type Nullable
id String No
eventId String No
matchId String | Null Yes
start DateTime No
finish DateTime No
courtId String No
atRest EventDoubleUncheckedCreateNestedManyWithoutAtRestInput No


MatchDateUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No
courtId String | StringFieldUpdateOperationsInput No
atRest EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput No

MatchDateCreateManyInput

Name Type Nullable
id String No
eventId String No
matchId String | Null Yes
start DateTime No
finish DateTime No
courtId String No

MatchDateUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No

MatchDateUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No
courtId String | StringFieldUpdateOperationsInput No

SetCreateInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
isFinished Boolean No
doubles DoubleCreateNestedManyWithoutSetsInput No
winner DoubleCreateNestedOneWithoutSetsWinsInput No
match MatchCreateNestedOneWithoutSetsInput No
games GameCreateNestedManyWithoutSetInput No
events EventCreateNestedManyWithoutSetsInput No

SetUncheckedCreateInput

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String | Null Yes
result String | Null Yes
matchId String No
isFinished Boolean No
doubles DoubleUncheckedCreateNestedManyWithoutSetsInput No
games GameUncheckedCreateNestedManyWithoutSetInput No
events EventUncheckedCreateNestedManyWithoutSetsInput No



SetCreateManyInput

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String | Null Yes
result String | Null Yes
matchId String No
isFinished Boolean No

SetUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
result String | NullableStringFieldUpdateOperationsInput | Null Yes
isFinished Boolean | BoolFieldUpdateOperationsInput No

SetUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
setWinnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
result String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No


GameUncheckedCreateInput

Name Type Nullable
id String No
setId String No
winnerId String | Null Yes
doubles DoubleUncheckedCreateNestedManyWithoutGamesInput No
events EventUncheckedCreateNestedManyWithoutGamesInput No


GameUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
doubles DoubleUncheckedUpdateManyWithoutGamesNestedInput No
events EventUncheckedUpdateManyWithoutGamesNestedInput No

GameCreateManyInput

Name Type Nullable
id String No
setId String No
winnerId String | Null Yes

GameUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

GameUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes

UserCreateInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
email String No
password String No
dob DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
role Role No
hashedRt String | Null Yes
profileImage String | Null Yes
player PlayerCreateNestedOneWithoutUserInput No

UserUncheckedCreateInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
email String No
password String No
dob DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
playerId String | Null Yes
role Role No
hashedRt String | Null Yes
profileImage String | Null Yes

UserUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No
hashedRt String | NullableStringFieldUpdateOperationsInput | Null Yes
profileImage String | NullableStringFieldUpdateOperationsInput | Null Yes
player PlayerUpdateOneWithoutUserNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
role Role | EnumRoleFieldUpdateOperationsInput No
hashedRt String | NullableStringFieldUpdateOperationsInput | Null Yes
profileImage String | NullableStringFieldUpdateOperationsInput | Null Yes

UserCreateManyInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
email String No
password String No
dob DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
playerId String | Null Yes
role Role No
hashedRt String | Null Yes
profileImage String | Null Yes

UserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No
hashedRt String | NullableStringFieldUpdateOperationsInput | Null Yes
profileImage String | NullableStringFieldUpdateOperationsInput | Null Yes

UserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
playerId String | NullableStringFieldUpdateOperationsInput | Null Yes
role Role | EnumRoleFieldUpdateOperationsInput No
hashedRt String | NullableStringFieldUpdateOperationsInput | Null Yes
profileImage String | NullableStringFieldUpdateOperationsInput | Null Yes

InviteCreateInput

Name Type Nullable
id String No
inviteType InviteType No
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerCreateNestedManyWithoutInvitesInput No
double DoubleCreateNestedOneWithoutInvitesInput No
event EventCreateNestedOneWithoutInviteInput No
match MatchCreateNestedOneWithoutInviteInput No

InviteUncheckedCreateInput

Name Type Nullable
id String No
inviteType InviteType No
doublesId String | Null Yes
eventId String | Null Yes
matchId String | Null Yes
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerUncheckedCreateNestedManyWithoutInvitesInput No


InviteUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
doublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutInvitesNestedInput No

InviteCreateManyInput

Name Type Nullable
id String No
inviteType InviteType No
doublesId String | Null Yes
eventId String | Null Yes
matchId String | Null Yes
inviterId String No
invitedId String No
createdAt DateTime No

InviteUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

InviteUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
doublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PlayerCreateInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
category CategoryCreateNestedOneWithoutPlayersInput No
matches MatchCreateNestedManyWithoutPlayersInput No
doubles DoubleCreateNestedManyWithoutPlayersInput No
events EventCreateNestedManyWithoutPlayersInput No
user UserCreateNestedOneWithoutPlayerInput No
invites InviteCreateNestedManyWithoutPlayersInput No

PlayerUncheckedCreateInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
categoryId String No
position PlayerPosition | Null Yes
matches MatchUncheckedCreateNestedManyWithoutPlayersInput No
doubles DoubleUncheckedCreateNestedManyWithoutPlayersInput No
events EventUncheckedCreateNestedManyWithoutPlayersInput No
user UserUncheckedCreateNestedOneWithoutPlayerInput No
invites InviteUncheckedCreateNestedManyWithoutPlayersInput No



PlayerCreateManyInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
categoryId String No
position PlayerPosition | Null Yes

PlayerUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
position PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null Yes

PlayerUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
categoryId String | StringFieldUpdateOperationsInput No
position PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null Yes


DoubleUncheckedCreateInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
players PlayerUpdateManyWithoutDoublesNestedInput No
matches MatchUpdateManyWithoutDoublesNestedInput No
category CategoryUpdateOneRequiredWithoutDoublesNestedInput No
games GameUpdateManyWithoutDoublesNestedInput No
sets SetUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUpdateManyWithoutWinnerNestedInput No
setsWins SetUpdateManyWithoutWinnerNestedInput No
gamesWins GameUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUpdateManyWithoutDoubleNestedInput No
invites InviteUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUpdateManyWithoutSecondPlaceNestedInput No

DoubleUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

DoubleCreateManyInput

Name Type Nullable
id String No
categoryId String No

DoubleUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

DoubleUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No

PlaceCreateInput

Name Type Nullable
id String No
name String | Null Yes
address String | Null Yes
events EventCreateNestedManyWithoutPlacesInput No
courts CourtCreateNestedManyWithoutPlaceInput No

PlaceUncheckedCreateInput

Name Type Nullable
id String No
name String | Null Yes
address String | Null Yes
events EventUncheckedCreateNestedManyWithoutPlacesInput No
courts CourtUncheckedCreateNestedManyWithoutPlaceInput No

PlaceUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
events EventUpdateManyWithoutPlacesNestedInput No
courts CourtUpdateManyWithoutPlaceNestedInput No

PlaceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
events EventUncheckedUpdateManyWithoutPlacesNestedInput No
courts CourtUncheckedUpdateManyWithoutPlaceNestedInput No

PlaceCreateManyInput

Name Type Nullable
id String No
name String | Null Yes
address String | Null Yes

PlaceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes

PlaceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringFilter No

BoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes



CategoryListRelationFilter

Name Type Nullable
every CategoryWhereInput No
some CategoryWhereInput No
none CategoryWhereInput No

PlayerListRelationFilter

Name Type Nullable
every PlayerWhereInput No
some PlayerWhereInput No
none PlayerWhereInput No

MatchListRelationFilter

Name Type Nullable
every MatchWhereInput No
some MatchWhereInput No
none MatchWhereInput No

PlaceListRelationFilter

Name Type Nullable
every PlaceWhereInput No
some PlaceWhereInput No
none PlaceWhereInput No

EventRequestListRelationFilter

Name Type Nullable
every EventRequestWhereInput No
some EventRequestWhereInput No
none EventRequestWhereInput No

EventDoubleListRelationFilter

Name Type Nullable
every EventDoubleWhereInput No
some EventDoubleWhereInput No
none EventDoubleWhereInput No

GameListRelationFilter

Name Type Nullable
every GameWhereInput No
some GameWhereInput No
none GameWhereInput No

SetListRelationFilter

Name Type Nullable
every SetWhereInput No
some SetWhereInput No
none SetWhereInput No

MatchDateListRelationFilter

Name Type Nullable
every MatchDateWhereInput No
some MatchDateWhereInput No
none MatchDateWhereInput No

CourtListRelationFilter

Name Type Nullable
every CourtWhereInput No
some CourtWhereInput No
none CourtWhereInput No

InviteNullableRelationFilter

Name Type Nullable
is InviteWhereInput | Null Yes
isNot InviteWhereInput | Null Yes

CategoryGroupListRelationFilter

Name Type Nullable
every CategoryGroupWhereInput No
some CategoryGroupWhereInput No
none CategoryGroupWhereInput No

EventMatchListRelationFilter

Name Type Nullable
every EventMatchWhereInput No
some EventMatchWhereInput No
none EventMatchWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

CategoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

MatchOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlaceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

EventRequestOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

EventDoubleOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

GameOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SetOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

MatchDateOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CourtOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CategoryGroupOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

EventMatchOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

EventCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
isActive SortOrder No
isFinished SortOrder No
startDate SortOrder No
finishDate SortOrder No
matchDurationInMinutes SortOrder No
timeOfFirstMatch SortOrder No
timeOfLastMatch SortOrder No
eventType SortOrder No
matchType SortOrder No
isGroupMatchesFinished SortOrder No

EventAvgOrderByAggregateInput

Name Type Nullable
matchDurationInMinutes SortOrder No
timeOfFirstMatch SortOrder No
timeOfLastMatch SortOrder No

EventMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
isActive SortOrder No
isFinished SortOrder No
startDate SortOrder No
finishDate SortOrder No
matchDurationInMinutes SortOrder No
timeOfFirstMatch SortOrder No
timeOfLastMatch SortOrder No
eventType SortOrder No
matchType SortOrder No
isGroupMatchesFinished SortOrder No

EventMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
isActive SortOrder No
isFinished SortOrder No
startDate SortOrder No
finishDate SortOrder No
matchDurationInMinutes SortOrder No
timeOfFirstMatch SortOrder No
timeOfLastMatch SortOrder No
eventType SortOrder No
matchType SortOrder No
isGroupMatchesFinished SortOrder No

EventSumOrderByAggregateInput

Name Type Nullable
matchDurationInMinutes SortOrder No
timeOfFirstMatch SortOrder No
timeOfLastMatch SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No



StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

CategoryRelationFilter

Name Type Nullable
is CategoryWhereInput No
isNot CategoryWhereInput No

DoublesGroupListRelationFilter

Name Type Nullable
every DoublesGroupWhereInput No
some DoublesGroupWhereInput No
none DoublesGroupWhereInput No

EventNullableRelationFilter

Name Type Nullable
is EventWhereInput | Null Yes
isNot EventWhereInput | Null Yes

DoublesGroupOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CategoryGroupEventIdCategoryIdCompoundUniqueInput

Name Type Nullable
eventId String No
categoryId String No

CategoryGroupCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No
eventId SortOrder No
groupsStageFinished SortOrder No

CategoryGroupMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No
eventId SortOrder No
groupsStageFinished SortOrder No

CategoryGroupMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No
eventId SortOrder No
groupsStageFinished SortOrder No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

CategoryGroupNullableRelationFilter

Name Type Nullable
is CategoryGroupWhereInput | Null Yes
isNot CategoryGroupWhereInput | Null Yes

DoubleNullableRelationFilter

Name Type Nullable
is DoubleWhereInput | Null Yes
isNot DoubleWhereInput | Null Yes

DoublesGroupCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
categoryGroupId SortOrder No
firstPlaceDoublesId SortOrder No
secondPlaceDoublesId SortOrder No

DoublesGroupMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
categoryGroupId SortOrder No
firstPlaceDoublesId SortOrder No
secondPlaceDoublesId SortOrder No

DoublesGroupMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
key SortOrder No
categoryGroupId SortOrder No
firstPlaceDoublesId SortOrder No
secondPlaceDoublesId SortOrder No


EventRelationFilter

Name Type Nullable
is EventWhereInput No
isNot EventWhereInput No

DoubleRelationFilter

Name Type Nullable
is DoubleWhereInput No
isNot DoubleWhereInput No

EventRequestEventIdDoubleIdCategoryIdCompoundUniqueInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No

EventRequestCountOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
status SortOrder No

EventRequestMaxOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
status SortOrder No

EventRequestMinOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
status SortOrder No


EventListRelationFilter

Name Type Nullable
every EventWhereInput No
some EventWhereInput No
none EventWhereInput No

PlaceRelationFilter

Name Type Nullable
is PlaceWhereInput No
isNot PlaceWhereInput No

EventOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CourtNamePlaceIdCompoundUniqueInput

Name Type Nullable
name String No
placeId String No

CourtCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
isAvailable SortOrder No
placeId SortOrder No

CourtMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
isAvailable SortOrder No
placeId SortOrder No

CourtMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
isAvailable SortOrder No
placeId SortOrder No

MatchDateNullableRelationFilter

Name Type Nullable
is MatchDateWhereInput | Null Yes
isNot MatchDateWhereInput | Null Yes

DoublesGroupNullableRelationFilter

Name Type Nullable
is DoublesGroupWhereInput | Null Yes
isNot DoublesGroupWhereInput | Null Yes

EventDoubleEventIdDoubleIdCategoryIdCompoundUniqueInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No

EventDoubleCountOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
atRestId SortOrder No
doublesGroupId SortOrder No

EventDoubleMaxOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
atRestId SortOrder No
doublesGroupId SortOrder No

EventDoubleMinOrderByAggregateInput

Name Type Nullable
eventId SortOrder No
doubleId SortOrder No
categoryId SortOrder No
atRestId SortOrder No
doublesGroupId SortOrder No

IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No


DoubleListRelationFilter

Name Type Nullable
every DoubleWhereInput No
some DoubleWhereInput No
none DoubleWhereInput No

DoubleOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CategoryCategoryIdCompoundUniqueInput

Name Type Nullable
level Int No
type CatType No

CategoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
level SortOrder No
type SortOrder No

CategoryAvgOrderByAggregateInput

Name Type Nullable
level SortOrder No

CategoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
level SortOrder No
type SortOrder No

CategoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
level SortOrder No
type SortOrder No

CategorySumOrderByAggregateInput

Name Type Nullable
level SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No



MatchRelationFilter

Name Type Nullable
is MatchWhereInput No
isNot MatchWhereInput No

EventMatchEventIdMatchIdCompoundUniqueInput

Name Type Nullable
eventId String No
matchId String No

EventMatchCountOrderByAggregateInput

Name Type Nullable
number SortOrder No
type SortOrder No
eventId SortOrder No
matchId SortOrder No
categoryGroupId SortOrder No
doublesGroupId SortOrder No

EventMatchAvgOrderByAggregateInput

Name Type Nullable
number SortOrder No

EventMatchMaxOrderByAggregateInput

Name Type Nullable
number SortOrder No
type SortOrder No
eventId SortOrder No
matchId SortOrder No
categoryGroupId SortOrder No
doublesGroupId SortOrder No

EventMatchMinOrderByAggregateInput

Name Type Nullable
number SortOrder No
type SortOrder No
eventId SortOrder No
matchId SortOrder No
categoryGroupId SortOrder No
doublesGroupId SortOrder No

EventMatchSumOrderByAggregateInput

Name Type Nullable
number SortOrder No


CategoryNullableRelationFilter

Name Type Nullable
is CategoryWhereInput | Null Yes
isNot CategoryWhereInput | Null Yes

CourtNullableRelationFilter

Name Type Nullable
is CourtWhereInput | Null Yes
isNot CourtWhereInput | Null Yes

EventMatchNullableRelationFilter

Name Type Nullable
is EventMatchWhereInput | Null Yes
isNot EventMatchWhereInput | Null Yes

MatchCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
isFinished SortOrder No
categoryId SortOrder No
winnerDoublesId SortOrder No
eventId SortOrder No
type SortOrder No
courtId SortOrder No
winnerRefId SortOrder No

MatchMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
isFinished SortOrder No
categoryId SortOrder No
winnerDoublesId SortOrder No
eventId SortOrder No
type SortOrder No
courtId SortOrder No
winnerRefId SortOrder No

MatchMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
isFinished SortOrder No
categoryId SortOrder No
winnerDoublesId SortOrder No
eventId SortOrder No
type SortOrder No
courtId SortOrder No
winnerRefId SortOrder No

DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

MatchNullableRelationFilter

Name Type Nullable
is MatchWhereInput | Null Yes
isNot MatchWhereInput | Null Yes

CourtRelationFilter

Name Type Nullable
is CourtWhereInput No
isNot CourtWhereInput No

MatchDateEventIdStartFinishCourtIdCompoundUniqueInput

Name Type Nullable
eventId String No
start DateTime No
finish DateTime No
courtId String No

MatchDateCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
matchId SortOrder No
start SortOrder No
finish SortOrder No
courtId SortOrder No

MatchDateMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
matchId SortOrder No
start SortOrder No
finish SortOrder No
courtId SortOrder No

MatchDateMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
eventId SortOrder No
matchId SortOrder No
start SortOrder No
finish SortOrder No
courtId SortOrder No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No


SetCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
number SortOrder No
setWinnerId SortOrder No
result SortOrder No
matchId SortOrder No
isFinished SortOrder No

SetAvgOrderByAggregateInput

Name Type Nullable
number SortOrder No

SetMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
number SortOrder No
setWinnerId SortOrder No
result SortOrder No
matchId SortOrder No
isFinished SortOrder No

SetMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
type SortOrder No
number SortOrder No
setWinnerId SortOrder No
result SortOrder No
matchId SortOrder No
isFinished SortOrder No

SetSumOrderByAggregateInput

Name Type Nullable
number SortOrder No


SetRelationFilter

Name Type Nullable
is SetWhereInput No
isNot SetWhereInput No

GameCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
setId SortOrder No
winnerId SortOrder No

GameMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
setId SortOrder No
winnerId SortOrder No

GameMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
setId SortOrder No
winnerId SortOrder No

EnumRoleFilter

Name Type Nullable
equals Role | EnumRoleFieldRefInput No
in Role[] | ListEnumRoleFieldRefInput No
notIn Role[] | ListEnumRoleFieldRefInput No
not Role | NestedEnumRoleFilter No

PlayerNullableRelationFilter

Name Type Nullable
is PlayerWhereInput | Null Yes
isNot PlayerWhereInput | Null Yes

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
firstName SortOrder No
lastName SortOrder No
email SortOrder No
password SortOrder No
dob SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
playerId SortOrder No
role SortOrder No
hashedRt SortOrder No
profileImage SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
firstName SortOrder No
lastName SortOrder No
email SortOrder No
password SortOrder No
dob SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
playerId SortOrder No
role SortOrder No
hashedRt SortOrder No
profileImage SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
firstName SortOrder No
lastName SortOrder No
email SortOrder No
password SortOrder No
dob SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
playerId SortOrder No
role SortOrder No
hashedRt SortOrder No
profileImage SortOrder No

EnumRoleWithAggregatesFilter

Name Type Nullable
equals Role | EnumRoleFieldRefInput No
in Role[] | ListEnumRoleFieldRefInput No
notIn Role[] | ListEnumRoleFieldRefInput No
not Role | NestedEnumRoleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumRoleFilter No
_max NestedEnumRoleFilter No


InviteInviterIdInvitedIdInviteTypeCompoundUniqueInput

Name Type Nullable
inviterId String No
invitedId String No
inviteType InviteType No

InviteCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
inviteType SortOrder No
doublesId SortOrder No
eventId SortOrder No
matchId SortOrder No
inviterId SortOrder No
invitedId SortOrder No
createdAt SortOrder No

InviteMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
inviteType SortOrder No
doublesId SortOrder No
eventId SortOrder No
matchId SortOrder No
inviterId SortOrder No
invitedId SortOrder No
createdAt SortOrder No

InviteMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
inviteType SortOrder No
doublesId SortOrder No
eventId SortOrder No
matchId SortOrder No
inviterId SortOrder No
invitedId SortOrder No
createdAt SortOrder No


EnumPlayerPositionNullableFilter

Name Type Nullable
equals PlayerPosition | EnumPlayerPositionFieldRefInput | Null Yes
in PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null Yes
notIn PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null Yes
not PlayerPosition | NestedEnumPlayerPositionNullableFilter | Null Yes

UserNullableRelationFilter

Name Type Nullable
is UserWhereInput | Null Yes
isNot UserWhereInput | Null Yes

InviteListRelationFilter

Name Type Nullable
every InviteWhereInput No
some InviteWhereInput No
none InviteWhereInput No

InviteOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PlayerCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
firstName SortOrder No
lastName SortOrder No
categoryId SortOrder No
position SortOrder No

PlayerMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
firstName SortOrder No
lastName SortOrder No
categoryId SortOrder No
position SortOrder No

PlayerMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
firstName SortOrder No
lastName SortOrder No
categoryId SortOrder No
position SortOrder No


DoubleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No

DoubleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No

DoubleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
categoryId SortOrder No

PlaceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
address SortOrder No

PlaceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
address SortOrder No

PlaceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
address SortOrder No











InviteCreateNestedOneWithoutEventInput

Name Type Nullable
create InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput No
connectOrCreate InviteCreateOrConnectWithoutEventInput No
connect InviteWhereUniqueInput No













InviteUncheckedCreateNestedOneWithoutEventInput

Name Type Nullable
create InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput No
connectOrCreate InviteCreateOrConnectWithoutEventInput No
connect InviteWhereUniqueInput No



StringFieldUpdateOperationsInput

Name Type Nullable
set String No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

EnumEventTypeFieldUpdateOperationsInput

Name Type Nullable
set EventType No

EnumMatchTypeFieldUpdateOperationsInput

Name Type Nullable
set MatchType No

CategoryUpdateManyWithoutEventsNestedInput

Name Type Nullable
create CategoryCreateWithoutEventsInput | CategoryCreateWithoutEventsInput[] | CategoryUncheckedCreateWithoutEventsInput | CategoryUncheckedCreateWithoutEventsInput[] No
connectOrCreate CategoryCreateOrConnectWithoutEventsInput | CategoryCreateOrConnectWithoutEventsInput[] No
upsert CategoryUpsertWithWhereUniqueWithoutEventsInput | CategoryUpsertWithWhereUniqueWithoutEventsInput[] No
set CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
disconnect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
delete CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
connect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
update CategoryUpdateWithWhereUniqueWithoutEventsInput | CategoryUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany CategoryUpdateManyWithWhereWithoutEventsInput | CategoryUpdateManyWithWhereWithoutEventsInput[] No
deleteMany CategoryScalarWhereInput | CategoryScalarWhereInput[] No

PlayerUpdateManyWithoutEventsNestedInput

Name Type Nullable
create PlayerCreateWithoutEventsInput | PlayerCreateWithoutEventsInput[] | PlayerUncheckedCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutEventsInput | PlayerCreateOrConnectWithoutEventsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutEventsInput | PlayerUpsertWithWhereUniqueWithoutEventsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutEventsInput | PlayerUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutEventsInput | PlayerUpdateManyWithWhereWithoutEventsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

MatchUpdateManyWithoutEventNestedInput

Name Type Nullable
create MatchCreateWithoutEventInput | MatchCreateWithoutEventInput[] | MatchUncheckedCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput[] No
connectOrCreate MatchCreateOrConnectWithoutEventInput | MatchCreateOrConnectWithoutEventInput[] No
upsert MatchUpsertWithWhereUniqueWithoutEventInput | MatchUpsertWithWhereUniqueWithoutEventInput[] No
createMany MatchCreateManyEventInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutEventInput | MatchUpdateWithWhereUniqueWithoutEventInput[] No
updateMany MatchUpdateManyWithWhereWithoutEventInput | MatchUpdateManyWithWhereWithoutEventInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

PlaceUpdateManyWithoutEventsNestedInput

Name Type Nullable
create PlaceCreateWithoutEventsInput | PlaceCreateWithoutEventsInput[] | PlaceUncheckedCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput[] No
connectOrCreate PlaceCreateOrConnectWithoutEventsInput | PlaceCreateOrConnectWithoutEventsInput[] No
upsert PlaceUpsertWithWhereUniqueWithoutEventsInput | PlaceUpsertWithWhereUniqueWithoutEventsInput[] No
set PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
disconnect PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
delete PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
connect PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
update PlaceUpdateWithWhereUniqueWithoutEventsInput | PlaceUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany PlaceUpdateManyWithWhereWithoutEventsInput | PlaceUpdateManyWithWhereWithoutEventsInput[] No
deleteMany PlaceScalarWhereInput | PlaceScalarWhereInput[] No

EventRequestUpdateManyWithoutEventNestedInput

Name Type Nullable
create EventRequestCreateWithoutEventInput | EventRequestCreateWithoutEventInput[] | EventRequestUncheckedCreateWithoutEventInput | EventRequestUncheckedCreateWithoutEventInput[] No
connectOrCreate EventRequestCreateOrConnectWithoutEventInput | EventRequestCreateOrConnectWithoutEventInput[] No
upsert EventRequestUpsertWithWhereUniqueWithoutEventInput | EventRequestUpsertWithWhereUniqueWithoutEventInput[] No
createMany EventRequestCreateManyEventInputEnvelope No
set EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
disconnect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
delete EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
connect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
update EventRequestUpdateWithWhereUniqueWithoutEventInput | EventRequestUpdateWithWhereUniqueWithoutEventInput[] No
updateMany EventRequestUpdateManyWithWhereWithoutEventInput | EventRequestUpdateManyWithWhereWithoutEventInput[] No
deleteMany EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No

EventDoubleUpdateManyWithoutEventNestedInput

Name Type Nullable
create EventDoubleCreateWithoutEventInput | EventDoubleCreateWithoutEventInput[] | EventDoubleUncheckedCreateWithoutEventInput | EventDoubleUncheckedCreateWithoutEventInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutEventInput | EventDoubleCreateOrConnectWithoutEventInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutEventInput | EventDoubleUpsertWithWhereUniqueWithoutEventInput[] No
createMany EventDoubleCreateManyEventInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutEventInput | EventDoubleUpdateWithWhereUniqueWithoutEventInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutEventInput | EventDoubleUpdateManyWithWhereWithoutEventInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

GameUpdateManyWithoutEventsNestedInput

Name Type Nullable
create GameCreateWithoutEventsInput | GameCreateWithoutEventsInput[] | GameUncheckedCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput[] No
connectOrCreate GameCreateOrConnectWithoutEventsInput | GameCreateOrConnectWithoutEventsInput[] No
upsert GameUpsertWithWhereUniqueWithoutEventsInput | GameUpsertWithWhereUniqueWithoutEventsInput[] No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutEventsInput | GameUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany GameUpdateManyWithWhereWithoutEventsInput | GameUpdateManyWithWhereWithoutEventsInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

SetUpdateManyWithoutEventsNestedInput

Name Type Nullable
create SetCreateWithoutEventsInput | SetCreateWithoutEventsInput[] | SetUncheckedCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput[] No
connectOrCreate SetCreateOrConnectWithoutEventsInput | SetCreateOrConnectWithoutEventsInput[] No
upsert SetUpsertWithWhereUniqueWithoutEventsInput | SetUpsertWithWhereUniqueWithoutEventsInput[] No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutEventsInput | SetUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany SetUpdateManyWithWhereWithoutEventsInput | SetUpdateManyWithWhereWithoutEventsInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

MatchDateUpdateManyWithoutEventNestedInput

Name Type Nullable
create MatchDateCreateWithoutEventInput | MatchDateCreateWithoutEventInput[] | MatchDateUncheckedCreateWithoutEventInput | MatchDateUncheckedCreateWithoutEventInput[] No
connectOrCreate MatchDateCreateOrConnectWithoutEventInput | MatchDateCreateOrConnectWithoutEventInput[] No
upsert MatchDateUpsertWithWhereUniqueWithoutEventInput | MatchDateUpsertWithWhereUniqueWithoutEventInput[] No
createMany MatchDateCreateManyEventInputEnvelope No
set MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
disconnect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
delete MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
connect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
update MatchDateUpdateWithWhereUniqueWithoutEventInput | MatchDateUpdateWithWhereUniqueWithoutEventInput[] No
updateMany MatchDateUpdateManyWithWhereWithoutEventInput | MatchDateUpdateManyWithWhereWithoutEventInput[] No
deleteMany MatchDateScalarWhereInput | MatchDateScalarWhereInput[] No

CourtUpdateManyWithoutEventsNestedInput

Name Type Nullable
create CourtCreateWithoutEventsInput | CourtCreateWithoutEventsInput[] | CourtUncheckedCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput[] No
connectOrCreate CourtCreateOrConnectWithoutEventsInput | CourtCreateOrConnectWithoutEventsInput[] No
upsert CourtUpsertWithWhereUniqueWithoutEventsInput | CourtUpsertWithWhereUniqueWithoutEventsInput[] No
set CourtWhereUniqueInput | CourtWhereUniqueInput[] No
disconnect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
delete CourtWhereUniqueInput | CourtWhereUniqueInput[] No
connect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
update CourtUpdateWithWhereUniqueWithoutEventsInput | CourtUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany CourtUpdateManyWithWhereWithoutEventsInput | CourtUpdateManyWithWhereWithoutEventsInput[] No
deleteMany CourtScalarWhereInput | CourtScalarWhereInput[] No


CategoryGroupUpdateManyWithoutEventNestedInput

Name Type Nullable
create CategoryGroupCreateWithoutEventInput | CategoryGroupCreateWithoutEventInput[] | CategoryGroupUncheckedCreateWithoutEventInput | CategoryGroupUncheckedCreateWithoutEventInput[] No
connectOrCreate CategoryGroupCreateOrConnectWithoutEventInput | CategoryGroupCreateOrConnectWithoutEventInput[] No
upsert CategoryGroupUpsertWithWhereUniqueWithoutEventInput | CategoryGroupUpsertWithWhereUniqueWithoutEventInput[] No
createMany CategoryGroupCreateManyEventInputEnvelope No
set CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
disconnect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
delete CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
connect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
update CategoryGroupUpdateWithWhereUniqueWithoutEventInput | CategoryGroupUpdateWithWhereUniqueWithoutEventInput[] No
updateMany CategoryGroupUpdateManyWithWhereWithoutEventInput | CategoryGroupUpdateManyWithWhereWithoutEventInput[] No
deleteMany CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] No

EventMatchUpdateManyWithoutEventNestedInput

Name Type Nullable
create EventMatchCreateWithoutEventInput | EventMatchCreateWithoutEventInput[] | EventMatchUncheckedCreateWithoutEventInput | EventMatchUncheckedCreateWithoutEventInput[] No
connectOrCreate EventMatchCreateOrConnectWithoutEventInput | EventMatchCreateOrConnectWithoutEventInput[] No
upsert EventMatchUpsertWithWhereUniqueWithoutEventInput | EventMatchUpsertWithWhereUniqueWithoutEventInput[] No
createMany EventMatchCreateManyEventInputEnvelope No
set EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
disconnect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
delete EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
connect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
update EventMatchUpdateWithWhereUniqueWithoutEventInput | EventMatchUpdateWithWhereUniqueWithoutEventInput[] No
updateMany EventMatchUpdateManyWithWhereWithoutEventInput | EventMatchUpdateManyWithWhereWithoutEventInput[] No
deleteMany EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No

CategoryUncheckedUpdateManyWithoutEventsNestedInput

Name Type Nullable
create CategoryCreateWithoutEventsInput | CategoryCreateWithoutEventsInput[] | CategoryUncheckedCreateWithoutEventsInput | CategoryUncheckedCreateWithoutEventsInput[] No
connectOrCreate CategoryCreateOrConnectWithoutEventsInput | CategoryCreateOrConnectWithoutEventsInput[] No
upsert CategoryUpsertWithWhereUniqueWithoutEventsInput | CategoryUpsertWithWhereUniqueWithoutEventsInput[] No
set CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
disconnect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
delete CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
connect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
update CategoryUpdateWithWhereUniqueWithoutEventsInput | CategoryUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany CategoryUpdateManyWithWhereWithoutEventsInput | CategoryUpdateManyWithWhereWithoutEventsInput[] No
deleteMany CategoryScalarWhereInput | CategoryScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutEventsNestedInput

Name Type Nullable
create PlayerCreateWithoutEventsInput | PlayerCreateWithoutEventsInput[] | PlayerUncheckedCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput[] No
connectOrCreate PlayerCreateOrConnectWithoutEventsInput | PlayerCreateOrConnectWithoutEventsInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutEventsInput | PlayerUpsertWithWhereUniqueWithoutEventsInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutEventsInput | PlayerUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany PlayerUpdateManyWithWhereWithoutEventsInput | PlayerUpdateManyWithWhereWithoutEventsInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

MatchUncheckedUpdateManyWithoutEventNestedInput

Name Type Nullable
create MatchCreateWithoutEventInput | MatchCreateWithoutEventInput[] | MatchUncheckedCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput[] No
connectOrCreate MatchCreateOrConnectWithoutEventInput | MatchCreateOrConnectWithoutEventInput[] No
upsert MatchUpsertWithWhereUniqueWithoutEventInput | MatchUpsertWithWhereUniqueWithoutEventInput[] No
createMany MatchCreateManyEventInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutEventInput | MatchUpdateWithWhereUniqueWithoutEventInput[] No
updateMany MatchUpdateManyWithWhereWithoutEventInput | MatchUpdateManyWithWhereWithoutEventInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

PlaceUncheckedUpdateManyWithoutEventsNestedInput

Name Type Nullable
create PlaceCreateWithoutEventsInput | PlaceCreateWithoutEventsInput[] | PlaceUncheckedCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput[] No
connectOrCreate PlaceCreateOrConnectWithoutEventsInput | PlaceCreateOrConnectWithoutEventsInput[] No
upsert PlaceUpsertWithWhereUniqueWithoutEventsInput | PlaceUpsertWithWhereUniqueWithoutEventsInput[] No
set PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
disconnect PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
delete PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
connect PlaceWhereUniqueInput | PlaceWhereUniqueInput[] No
update PlaceUpdateWithWhereUniqueWithoutEventsInput | PlaceUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany PlaceUpdateManyWithWhereWithoutEventsInput | PlaceUpdateManyWithWhereWithoutEventsInput[] No
deleteMany PlaceScalarWhereInput | PlaceScalarWhereInput[] No

EventRequestUncheckedUpdateManyWithoutEventNestedInput

Name Type Nullable
create EventRequestCreateWithoutEventInput | EventRequestCreateWithoutEventInput[] | EventRequestUncheckedCreateWithoutEventInput | EventRequestUncheckedCreateWithoutEventInput[] No
connectOrCreate EventRequestCreateOrConnectWithoutEventInput | EventRequestCreateOrConnectWithoutEventInput[] No
upsert EventRequestUpsertWithWhereUniqueWithoutEventInput | EventRequestUpsertWithWhereUniqueWithoutEventInput[] No
createMany EventRequestCreateManyEventInputEnvelope No
set EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
disconnect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
delete EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
connect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
update EventRequestUpdateWithWhereUniqueWithoutEventInput | EventRequestUpdateWithWhereUniqueWithoutEventInput[] No
updateMany EventRequestUpdateManyWithWhereWithoutEventInput | EventRequestUpdateManyWithWhereWithoutEventInput[] No
deleteMany EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No

EventDoubleUncheckedUpdateManyWithoutEventNestedInput

Name Type Nullable
create EventDoubleCreateWithoutEventInput | EventDoubleCreateWithoutEventInput[] | EventDoubleUncheckedCreateWithoutEventInput | EventDoubleUncheckedCreateWithoutEventInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutEventInput | EventDoubleCreateOrConnectWithoutEventInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutEventInput | EventDoubleUpsertWithWhereUniqueWithoutEventInput[] No
createMany EventDoubleCreateManyEventInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutEventInput | EventDoubleUpdateWithWhereUniqueWithoutEventInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutEventInput | EventDoubleUpdateManyWithWhereWithoutEventInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

GameUncheckedUpdateManyWithoutEventsNestedInput

Name Type Nullable
create GameCreateWithoutEventsInput | GameCreateWithoutEventsInput[] | GameUncheckedCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput[] No
connectOrCreate GameCreateOrConnectWithoutEventsInput | GameCreateOrConnectWithoutEventsInput[] No
upsert GameUpsertWithWhereUniqueWithoutEventsInput | GameUpsertWithWhereUniqueWithoutEventsInput[] No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutEventsInput | GameUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany GameUpdateManyWithWhereWithoutEventsInput | GameUpdateManyWithWhereWithoutEventsInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

SetUncheckedUpdateManyWithoutEventsNestedInput

Name Type Nullable
create SetCreateWithoutEventsInput | SetCreateWithoutEventsInput[] | SetUncheckedCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput[] No
connectOrCreate SetCreateOrConnectWithoutEventsInput | SetCreateOrConnectWithoutEventsInput[] No
upsert SetUpsertWithWhereUniqueWithoutEventsInput | SetUpsertWithWhereUniqueWithoutEventsInput[] No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutEventsInput | SetUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany SetUpdateManyWithWhereWithoutEventsInput | SetUpdateManyWithWhereWithoutEventsInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

MatchDateUncheckedUpdateManyWithoutEventNestedInput

Name Type Nullable
create MatchDateCreateWithoutEventInput | MatchDateCreateWithoutEventInput[] | MatchDateUncheckedCreateWithoutEventInput | MatchDateUncheckedCreateWithoutEventInput[] No
connectOrCreate MatchDateCreateOrConnectWithoutEventInput | MatchDateCreateOrConnectWithoutEventInput[] No
upsert MatchDateUpsertWithWhereUniqueWithoutEventInput | MatchDateUpsertWithWhereUniqueWithoutEventInput[] No
createMany MatchDateCreateManyEventInputEnvelope No
set MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
disconnect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
delete MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
connect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
update MatchDateUpdateWithWhereUniqueWithoutEventInput | MatchDateUpdateWithWhereUniqueWithoutEventInput[] No
updateMany MatchDateUpdateManyWithWhereWithoutEventInput | MatchDateUpdateManyWithWhereWithoutEventInput[] No
deleteMany MatchDateScalarWhereInput | MatchDateScalarWhereInput[] No

CourtUncheckedUpdateManyWithoutEventsNestedInput

Name Type Nullable
create CourtCreateWithoutEventsInput | CourtCreateWithoutEventsInput[] | CourtUncheckedCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput[] No
connectOrCreate CourtCreateOrConnectWithoutEventsInput | CourtCreateOrConnectWithoutEventsInput[] No
upsert CourtUpsertWithWhereUniqueWithoutEventsInput | CourtUpsertWithWhereUniqueWithoutEventsInput[] No
set CourtWhereUniqueInput | CourtWhereUniqueInput[] No
disconnect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
delete CourtWhereUniqueInput | CourtWhereUniqueInput[] No
connect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
update CourtUpdateWithWhereUniqueWithoutEventsInput | CourtUpdateWithWhereUniqueWithoutEventsInput[] No
updateMany CourtUpdateManyWithWhereWithoutEventsInput | CourtUpdateManyWithWhereWithoutEventsInput[] No
deleteMany CourtScalarWhereInput | CourtScalarWhereInput[] No


CategoryGroupUncheckedUpdateManyWithoutEventNestedInput

Name Type Nullable
create CategoryGroupCreateWithoutEventInput | CategoryGroupCreateWithoutEventInput[] | CategoryGroupUncheckedCreateWithoutEventInput | CategoryGroupUncheckedCreateWithoutEventInput[] No
connectOrCreate CategoryGroupCreateOrConnectWithoutEventInput | CategoryGroupCreateOrConnectWithoutEventInput[] No
upsert CategoryGroupUpsertWithWhereUniqueWithoutEventInput | CategoryGroupUpsertWithWhereUniqueWithoutEventInput[] No
createMany CategoryGroupCreateManyEventInputEnvelope No
set CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
disconnect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
delete CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
connect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
update CategoryGroupUpdateWithWhereUniqueWithoutEventInput | CategoryGroupUpdateWithWhereUniqueWithoutEventInput[] No
updateMany CategoryGroupUpdateManyWithWhereWithoutEventInput | CategoryGroupUpdateManyWithWhereWithoutEventInput[] No
deleteMany CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] No

EventMatchUncheckedUpdateManyWithoutEventNestedInput

Name Type Nullable
create EventMatchCreateWithoutEventInput | EventMatchCreateWithoutEventInput[] | EventMatchUncheckedCreateWithoutEventInput | EventMatchUncheckedCreateWithoutEventInput[] No
connectOrCreate EventMatchCreateOrConnectWithoutEventInput | EventMatchCreateOrConnectWithoutEventInput[] No
upsert EventMatchUpsertWithWhereUniqueWithoutEventInput | EventMatchUpsertWithWhereUniqueWithoutEventInput[] No
createMany EventMatchCreateManyEventInputEnvelope No
set EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
disconnect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
delete EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
connect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
update EventMatchUpdateWithWhereUniqueWithoutEventInput | EventMatchUpdateWithWhereUniqueWithoutEventInput[] No
updateMany EventMatchUpdateManyWithWhereWithoutEventInput | EventMatchUpdateManyWithWhereWithoutEventInput[] No
deleteMany EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No

CategoryCreateNestedOneWithoutCategoryGroupInput

Name Type Nullable
create CategoryCreateWithoutCategoryGroupInput | CategoryUncheckedCreateWithoutCategoryGroupInput No
connectOrCreate CategoryCreateOrConnectWithoutCategoryGroupInput No
connect CategoryWhereUniqueInput No


EventCreateNestedOneWithoutCategoriesGroupsInput

Name Type Nullable
create EventCreateWithoutCategoriesGroupsInput | EventUncheckedCreateWithoutCategoriesGroupsInput No
connectOrCreate EventCreateOrConnectWithoutCategoriesGroupsInput No
connect EventWhereUniqueInput No





DoublesGroupUpdateManyWithoutCategoryGroupNestedInput

Name Type Nullable
create DoublesGroupCreateWithoutCategoryGroupInput | DoublesGroupCreateWithoutCategoryGroupInput[] | DoublesGroupUncheckedCreateWithoutCategoryGroupInput | DoublesGroupUncheckedCreateWithoutCategoryGroupInput[] No
connectOrCreate DoublesGroupCreateOrConnectWithoutCategoryGroupInput | DoublesGroupCreateOrConnectWithoutCategoryGroupInput[] No
upsert DoublesGroupUpsertWithWhereUniqueWithoutCategoryGroupInput | DoublesGroupUpsertWithWhereUniqueWithoutCategoryGroupInput[] No
createMany DoublesGroupCreateManyCategoryGroupInputEnvelope No
set DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
disconnect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
delete DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
connect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
update DoublesGroupUpdateWithWhereUniqueWithoutCategoryGroupInput | DoublesGroupUpdateWithWhereUniqueWithoutCategoryGroupInput[] No
updateMany DoublesGroupUpdateManyWithWhereWithoutCategoryGroupInput | DoublesGroupUpdateManyWithWhereWithoutCategoryGroupInput[] No
deleteMany DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No


EventMatchUpdateManyWithoutCategoryGroupNestedInput

Name Type Nullable
create EventMatchCreateWithoutCategoryGroupInput | EventMatchCreateWithoutCategoryGroupInput[] | EventMatchUncheckedCreateWithoutCategoryGroupInput | EventMatchUncheckedCreateWithoutCategoryGroupInput[] No
connectOrCreate EventMatchCreateOrConnectWithoutCategoryGroupInput | EventMatchCreateOrConnectWithoutCategoryGroupInput[] No
upsert EventMatchUpsertWithWhereUniqueWithoutCategoryGroupInput | EventMatchUpsertWithWhereUniqueWithoutCategoryGroupInput[] No
createMany EventMatchCreateManyCategoryGroupInputEnvelope No
set EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
disconnect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
delete EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
connect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
update EventMatchUpdateWithWhereUniqueWithoutCategoryGroupInput | EventMatchUpdateWithWhereUniqueWithoutCategoryGroupInput[] No
updateMany EventMatchUpdateManyWithWhereWithoutCategoryGroupInput | EventMatchUpdateManyWithWhereWithoutCategoryGroupInput[] No
deleteMany EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput

Name Type Nullable
create DoublesGroupCreateWithoutCategoryGroupInput | DoublesGroupCreateWithoutCategoryGroupInput[] | DoublesGroupUncheckedCreateWithoutCategoryGroupInput | DoublesGroupUncheckedCreateWithoutCategoryGroupInput[] No
connectOrCreate DoublesGroupCreateOrConnectWithoutCategoryGroupInput | DoublesGroupCreateOrConnectWithoutCategoryGroupInput[] No
upsert DoublesGroupUpsertWithWhereUniqueWithoutCategoryGroupInput | DoublesGroupUpsertWithWhereUniqueWithoutCategoryGroupInput[] No
createMany DoublesGroupCreateManyCategoryGroupInputEnvelope No
set DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
disconnect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
delete DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
connect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
update DoublesGroupUpdateWithWhereUniqueWithoutCategoryGroupInput | DoublesGroupUpdateWithWhereUniqueWithoutCategoryGroupInput[] No
updateMany DoublesGroupUpdateManyWithWhereWithoutCategoryGroupInput | DoublesGroupUpdateManyWithWhereWithoutCategoryGroupInput[] No
deleteMany DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No

EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput

Name Type Nullable
create EventMatchCreateWithoutCategoryGroupInput | EventMatchCreateWithoutCategoryGroupInput[] | EventMatchUncheckedCreateWithoutCategoryGroupInput | EventMatchUncheckedCreateWithoutCategoryGroupInput[] No
connectOrCreate EventMatchCreateOrConnectWithoutCategoryGroupInput | EventMatchCreateOrConnectWithoutCategoryGroupInput[] No
upsert EventMatchUpsertWithWhereUniqueWithoutCategoryGroupInput | EventMatchUpsertWithWhereUniqueWithoutCategoryGroupInput[] No
createMany EventMatchCreateManyCategoryGroupInputEnvelope No
set EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
disconnect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
delete EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
connect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
update EventMatchUpdateWithWhereUniqueWithoutCategoryGroupInput | EventMatchUpdateWithWhereUniqueWithoutCategoryGroupInput[] No
updateMany EventMatchUpdateManyWithWhereWithoutCategoryGroupInput | EventMatchUpdateManyWithWhereWithoutCategoryGroupInput[] No
deleteMany EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No


CategoryGroupCreateNestedOneWithoutGroupsInput

Name Type Nullable
create CategoryGroupCreateWithoutGroupsInput | CategoryGroupUncheckedCreateWithoutGroupsInput No
connectOrCreate CategoryGroupCreateOrConnectWithoutGroupsInput No
connect CategoryGroupWhereUniqueInput No

DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput

Name Type Nullable
create DoubleCreateWithoutFirstPlaceInGroupsInput | DoubleUncheckedCreateWithoutFirstPlaceInGroupsInput No
connectOrCreate DoubleCreateOrConnectWithoutFirstPlaceInGroupsInput No
connect DoubleWhereUniqueInput No

DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput

Name Type Nullable
create DoubleCreateWithoutSecondPlaceInGroupsInput | DoubleUncheckedCreateWithoutSecondPlaceInGroupsInput No
connectOrCreate DoubleCreateOrConnectWithoutSecondPlaceInGroupsInput No
connect DoubleWhereUniqueInput No




EventDoubleUpdateManyWithoutDoublesGroupNestedInput

Name Type Nullable
create EventDoubleCreateWithoutDoublesGroupInput | EventDoubleCreateWithoutDoublesGroupInput[] | EventDoubleUncheckedCreateWithoutDoublesGroupInput | EventDoubleUncheckedCreateWithoutDoublesGroupInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutDoublesGroupInput | EventDoubleCreateOrConnectWithoutDoublesGroupInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutDoublesGroupInput | EventDoubleUpsertWithWhereUniqueWithoutDoublesGroupInput[] No
createMany EventDoubleCreateManyDoublesGroupInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutDoublesGroupInput | EventDoubleUpdateWithWhereUniqueWithoutDoublesGroupInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutDoublesGroupInput | EventDoubleUpdateManyWithWhereWithoutDoublesGroupInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No




EventMatchUpdateManyWithoutDoublesGroupNestedInput

Name Type Nullable
create EventMatchCreateWithoutDoublesGroupInput | EventMatchCreateWithoutDoublesGroupInput[] | EventMatchUncheckedCreateWithoutDoublesGroupInput | EventMatchUncheckedCreateWithoutDoublesGroupInput[] No
connectOrCreate EventMatchCreateOrConnectWithoutDoublesGroupInput | EventMatchCreateOrConnectWithoutDoublesGroupInput[] No
upsert EventMatchUpsertWithWhereUniqueWithoutDoublesGroupInput | EventMatchUpsertWithWhereUniqueWithoutDoublesGroupInput[] No
createMany EventMatchCreateManyDoublesGroupInputEnvelope No
set EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
disconnect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
delete EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
connect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
update EventMatchUpdateWithWhereUniqueWithoutDoublesGroupInput | EventMatchUpdateWithWhereUniqueWithoutDoublesGroupInput[] No
updateMany EventMatchUpdateManyWithWhereWithoutDoublesGroupInput | EventMatchUpdateManyWithWhereWithoutDoublesGroupInput[] No
deleteMany EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No

EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput

Name Type Nullable
create EventDoubleCreateWithoutDoublesGroupInput | EventDoubleCreateWithoutDoublesGroupInput[] | EventDoubleUncheckedCreateWithoutDoublesGroupInput | EventDoubleUncheckedCreateWithoutDoublesGroupInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutDoublesGroupInput | EventDoubleCreateOrConnectWithoutDoublesGroupInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutDoublesGroupInput | EventDoubleUpsertWithWhereUniqueWithoutDoublesGroupInput[] No
createMany EventDoubleCreateManyDoublesGroupInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutDoublesGroupInput | EventDoubleUpdateWithWhereUniqueWithoutDoublesGroupInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutDoublesGroupInput | EventDoubleUpdateManyWithWhereWithoutDoublesGroupInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput

Name Type Nullable
create EventMatchCreateWithoutDoublesGroupInput | EventMatchCreateWithoutDoublesGroupInput[] | EventMatchUncheckedCreateWithoutDoublesGroupInput | EventMatchUncheckedCreateWithoutDoublesGroupInput[] No
connectOrCreate EventMatchCreateOrConnectWithoutDoublesGroupInput | EventMatchCreateOrConnectWithoutDoublesGroupInput[] No
upsert EventMatchUpsertWithWhereUniqueWithoutDoublesGroupInput | EventMatchUpsertWithWhereUniqueWithoutDoublesGroupInput[] No
createMany EventMatchCreateManyDoublesGroupInputEnvelope No
set EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
disconnect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
delete EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
connect EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] No
update EventMatchUpdateWithWhereUniqueWithoutDoublesGroupInput | EventMatchUpdateWithWhereUniqueWithoutDoublesGroupInput[] No
updateMany EventMatchUpdateManyWithWhereWithoutDoublesGroupInput | EventMatchUpdateManyWithWhereWithoutDoublesGroupInput[] No
deleteMany EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No

EventCreateNestedOneWithoutEventRequestsInput

Name Type Nullable
create EventCreateWithoutEventRequestsInput | EventUncheckedCreateWithoutEventRequestsInput No
connectOrCreate EventCreateOrConnectWithoutEventRequestsInput No
connect EventWhereUniqueInput No

DoubleCreateNestedOneWithoutEventRequestsInput

Name Type Nullable
create DoubleCreateWithoutEventRequestsInput | DoubleUncheckedCreateWithoutEventRequestsInput No
connectOrCreate DoubleCreateOrConnectWithoutEventRequestsInput No
connect DoubleWhereUniqueInput No

CategoryCreateNestedOneWithoutEventRequestsInput

Name Type Nullable
create CategoryCreateWithoutEventRequestsInput | CategoryUncheckedCreateWithoutEventRequestsInput No
connectOrCreate CategoryCreateOrConnectWithoutEventRequestsInput No
connect CategoryWhereUniqueInput No

EnumRequestStatusFieldUpdateOperationsInput

Name Type Nullable
set RequestStatus No






PlaceCreateNestedOneWithoutCourtsInput

Name Type Nullable
create PlaceCreateWithoutCourtsInput | PlaceUncheckedCreateWithoutCourtsInput No
connectOrCreate PlaceCreateOrConnectWithoutCourtsInput No
connect PlaceWhereUniqueInput No





EventUpdateManyWithoutCourtsNestedInput

Name Type Nullable
create EventCreateWithoutCourtsInput | EventCreateWithoutCourtsInput[] | EventUncheckedCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput[] No
connectOrCreate EventCreateOrConnectWithoutCourtsInput | EventCreateOrConnectWithoutCourtsInput[] No
upsert EventUpsertWithWhereUniqueWithoutCourtsInput | EventUpsertWithWhereUniqueWithoutCourtsInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutCourtsInput | EventUpdateWithWhereUniqueWithoutCourtsInput[] No
updateMany EventUpdateManyWithWhereWithoutCourtsInput | EventUpdateManyWithWhereWithoutCourtsInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

MatchUpdateManyWithoutCourtNestedInput

Name Type Nullable
create MatchCreateWithoutCourtInput | MatchCreateWithoutCourtInput[] | MatchUncheckedCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput[] No
connectOrCreate MatchCreateOrConnectWithoutCourtInput | MatchCreateOrConnectWithoutCourtInput[] No
upsert MatchUpsertWithWhereUniqueWithoutCourtInput | MatchUpsertWithWhereUniqueWithoutCourtInput[] No
createMany MatchCreateManyCourtInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutCourtInput | MatchUpdateWithWhereUniqueWithoutCourtInput[] No
updateMany MatchUpdateManyWithWhereWithoutCourtInput | MatchUpdateManyWithWhereWithoutCourtInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No


MatchDateUpdateManyWithoutCourtNestedInput

Name Type Nullable
create MatchDateCreateWithoutCourtInput | MatchDateCreateWithoutCourtInput[] | MatchDateUncheckedCreateWithoutCourtInput | MatchDateUncheckedCreateWithoutCourtInput[] No
connectOrCreate MatchDateCreateOrConnectWithoutCourtInput | MatchDateCreateOrConnectWithoutCourtInput[] No
upsert MatchDateUpsertWithWhereUniqueWithoutCourtInput | MatchDateUpsertWithWhereUniqueWithoutCourtInput[] No
createMany MatchDateCreateManyCourtInputEnvelope No
set MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
disconnect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
delete MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
connect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
update MatchDateUpdateWithWhereUniqueWithoutCourtInput | MatchDateUpdateWithWhereUniqueWithoutCourtInput[] No
updateMany MatchDateUpdateManyWithWhereWithoutCourtInput | MatchDateUpdateManyWithWhereWithoutCourtInput[] No
deleteMany MatchDateScalarWhereInput | MatchDateScalarWhereInput[] No

EventUncheckedUpdateManyWithoutCourtsNestedInput

Name Type Nullable
create EventCreateWithoutCourtsInput | EventCreateWithoutCourtsInput[] | EventUncheckedCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput[] No
connectOrCreate EventCreateOrConnectWithoutCourtsInput | EventCreateOrConnectWithoutCourtsInput[] No
upsert EventUpsertWithWhereUniqueWithoutCourtsInput | EventUpsertWithWhereUniqueWithoutCourtsInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutCourtsInput | EventUpdateWithWhereUniqueWithoutCourtsInput[] No
updateMany EventUpdateManyWithWhereWithoutCourtsInput | EventUpdateManyWithWhereWithoutCourtsInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

MatchUncheckedUpdateManyWithoutCourtNestedInput

Name Type Nullable
create MatchCreateWithoutCourtInput | MatchCreateWithoutCourtInput[] | MatchUncheckedCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput[] No
connectOrCreate MatchCreateOrConnectWithoutCourtInput | MatchCreateOrConnectWithoutCourtInput[] No
upsert MatchUpsertWithWhereUniqueWithoutCourtInput | MatchUpsertWithWhereUniqueWithoutCourtInput[] No
createMany MatchCreateManyCourtInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutCourtInput | MatchUpdateWithWhereUniqueWithoutCourtInput[] No
updateMany MatchUpdateManyWithWhereWithoutCourtInput | MatchUpdateManyWithWhereWithoutCourtInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

MatchDateUncheckedUpdateManyWithoutCourtNestedInput

Name Type Nullable
create MatchDateCreateWithoutCourtInput | MatchDateCreateWithoutCourtInput[] | MatchDateUncheckedCreateWithoutCourtInput | MatchDateUncheckedCreateWithoutCourtInput[] No
connectOrCreate MatchDateCreateOrConnectWithoutCourtInput | MatchDateCreateOrConnectWithoutCourtInput[] No
upsert MatchDateUpsertWithWhereUniqueWithoutCourtInput | MatchDateUpsertWithWhereUniqueWithoutCourtInput[] No
createMany MatchDateCreateManyCourtInputEnvelope No
set MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
disconnect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
delete MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
connect MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] No
update MatchDateUpdateWithWhereUniqueWithoutCourtInput | MatchDateUpdateWithWhereUniqueWithoutCourtInput[] No
updateMany MatchDateUpdateManyWithWhereWithoutCourtInput | MatchDateUpdateManyWithWhereWithoutCourtInput[] No
deleteMany MatchDateScalarWhereInput | MatchDateScalarWhereInput[] No

EventCreateNestedOneWithoutEventDoublesInput

Name Type Nullable
create EventCreateWithoutEventDoublesInput | EventUncheckedCreateWithoutEventDoublesInput No
connectOrCreate EventCreateOrConnectWithoutEventDoublesInput No
connect EventWhereUniqueInput No

DoubleCreateNestedOneWithoutEventDoubleInput

Name Type Nullable
create DoubleCreateWithoutEventDoubleInput | DoubleUncheckedCreateWithoutEventDoubleInput No
connectOrCreate DoubleCreateOrConnectWithoutEventDoubleInput No
connect DoubleWhereUniqueInput No

CategoryCreateNestedOneWithoutEventDoublesInput

Name Type Nullable
create CategoryCreateWithoutEventDoublesInput | CategoryUncheckedCreateWithoutEventDoublesInput No
connectOrCreate CategoryCreateOrConnectWithoutEventDoublesInput No
connect CategoryWhereUniqueInput No

MatchDateCreateNestedOneWithoutAtRestInput

Name Type Nullable
create MatchDateCreateWithoutAtRestInput | MatchDateUncheckedCreateWithoutAtRestInput No
connectOrCreate MatchDateCreateOrConnectWithoutAtRestInput No
connect MatchDateWhereUniqueInput No

DoublesGroupCreateNestedOneWithoutEventDoublesInput

Name Type Nullable
create DoublesGroupCreateWithoutEventDoublesInput | DoublesGroupUncheckedCreateWithoutEventDoublesInput No
connectOrCreate DoublesGroupCreateOrConnectWithoutEventDoublesInput No
connect DoublesGroupWhereUniqueInput No




















IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

EnumCatTypeFieldUpdateOperationsInput

Name Type Nullable
set CatType No

PlayerUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create PlayerCreateWithoutCategoryInput | PlayerCreateWithoutCategoryInput[] | PlayerUncheckedCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput[] No
connectOrCreate PlayerCreateOrConnectWithoutCategoryInput | PlayerCreateOrConnectWithoutCategoryInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutCategoryInput | PlayerUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany PlayerCreateManyCategoryInputEnvelope No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutCategoryInput | PlayerUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany PlayerUpdateManyWithWhereWithoutCategoryInput | PlayerUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

DoubleUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create DoubleCreateWithoutCategoryInput | DoubleCreateWithoutCategoryInput[] | DoubleUncheckedCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput[] No
connectOrCreate DoubleCreateOrConnectWithoutCategoryInput | DoubleCreateOrConnectWithoutCategoryInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutCategoryInput | DoubleUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany DoubleCreateManyCategoryInputEnvelope No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutCategoryInput | DoubleUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany DoubleUpdateManyWithWhereWithoutCategoryInput | DoubleUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No

EventUpdateManyWithoutCategoriesNestedInput

Name Type Nullable
create EventCreateWithoutCategoriesInput | EventCreateWithoutCategoriesInput[] | EventUncheckedCreateWithoutCategoriesInput | EventUncheckedCreateWithoutCategoriesInput[] No
connectOrCreate EventCreateOrConnectWithoutCategoriesInput | EventCreateOrConnectWithoutCategoriesInput[] No
upsert EventUpsertWithWhereUniqueWithoutCategoriesInput | EventUpsertWithWhereUniqueWithoutCategoriesInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutCategoriesInput | EventUpdateWithWhereUniqueWithoutCategoriesInput[] No
updateMany EventUpdateManyWithWhereWithoutCategoriesInput | EventUpdateManyWithWhereWithoutCategoriesInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

MatchUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create MatchCreateWithoutCategoryInput | MatchCreateWithoutCategoryInput[] | MatchUncheckedCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput[] No
connectOrCreate MatchCreateOrConnectWithoutCategoryInput | MatchCreateOrConnectWithoutCategoryInput[] No
upsert MatchUpsertWithWhereUniqueWithoutCategoryInput | MatchUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany MatchCreateManyCategoryInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutCategoryInput | MatchUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany MatchUpdateManyWithWhereWithoutCategoryInput | MatchUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

EventDoubleUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create EventDoubleCreateWithoutCategoryInput | EventDoubleCreateWithoutCategoryInput[] | EventDoubleUncheckedCreateWithoutCategoryInput | EventDoubleUncheckedCreateWithoutCategoryInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutCategoryInput | EventDoubleCreateOrConnectWithoutCategoryInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutCategoryInput | EventDoubleUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany EventDoubleCreateManyCategoryInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutCategoryInput | EventDoubleUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutCategoryInput | EventDoubleUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

EventRequestUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create EventRequestCreateWithoutCategoryInput | EventRequestCreateWithoutCategoryInput[] | EventRequestUncheckedCreateWithoutCategoryInput | EventRequestUncheckedCreateWithoutCategoryInput[] No
connectOrCreate EventRequestCreateOrConnectWithoutCategoryInput | EventRequestCreateOrConnectWithoutCategoryInput[] No
upsert EventRequestUpsertWithWhereUniqueWithoutCategoryInput | EventRequestUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany EventRequestCreateManyCategoryInputEnvelope No
set EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
disconnect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
delete EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
connect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
update EventRequestUpdateWithWhereUniqueWithoutCategoryInput | EventRequestUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany EventRequestUpdateManyWithWhereWithoutCategoryInput | EventRequestUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No

CategoryGroupUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create CategoryGroupCreateWithoutCategoryInput | CategoryGroupCreateWithoutCategoryInput[] | CategoryGroupUncheckedCreateWithoutCategoryInput | CategoryGroupUncheckedCreateWithoutCategoryInput[] No
connectOrCreate CategoryGroupCreateOrConnectWithoutCategoryInput | CategoryGroupCreateOrConnectWithoutCategoryInput[] No
upsert CategoryGroupUpsertWithWhereUniqueWithoutCategoryInput | CategoryGroupUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany CategoryGroupCreateManyCategoryInputEnvelope No
set CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
disconnect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
delete CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
connect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
update CategoryGroupUpdateWithWhereUniqueWithoutCategoryInput | CategoryGroupUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany CategoryGroupUpdateManyWithWhereWithoutCategoryInput | CategoryGroupUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create PlayerCreateWithoutCategoryInput | PlayerCreateWithoutCategoryInput[] | PlayerUncheckedCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput[] No
connectOrCreate PlayerCreateOrConnectWithoutCategoryInput | PlayerCreateOrConnectWithoutCategoryInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutCategoryInput | PlayerUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany PlayerCreateManyCategoryInputEnvelope No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutCategoryInput | PlayerUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany PlayerUpdateManyWithWhereWithoutCategoryInput | PlayerUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

DoubleUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create DoubleCreateWithoutCategoryInput | DoubleCreateWithoutCategoryInput[] | DoubleUncheckedCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput[] No
connectOrCreate DoubleCreateOrConnectWithoutCategoryInput | DoubleCreateOrConnectWithoutCategoryInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutCategoryInput | DoubleUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany DoubleCreateManyCategoryInputEnvelope No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutCategoryInput | DoubleUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany DoubleUpdateManyWithWhereWithoutCategoryInput | DoubleUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No

EventUncheckedUpdateManyWithoutCategoriesNestedInput

Name Type Nullable
create EventCreateWithoutCategoriesInput | EventCreateWithoutCategoriesInput[] | EventUncheckedCreateWithoutCategoriesInput | EventUncheckedCreateWithoutCategoriesInput[] No
connectOrCreate EventCreateOrConnectWithoutCategoriesInput | EventCreateOrConnectWithoutCategoriesInput[] No
upsert EventUpsertWithWhereUniqueWithoutCategoriesInput | EventUpsertWithWhereUniqueWithoutCategoriesInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutCategoriesInput | EventUpdateWithWhereUniqueWithoutCategoriesInput[] No
updateMany EventUpdateManyWithWhereWithoutCategoriesInput | EventUpdateManyWithWhereWithoutCategoriesInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

MatchUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create MatchCreateWithoutCategoryInput | MatchCreateWithoutCategoryInput[] | MatchUncheckedCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput[] No
connectOrCreate MatchCreateOrConnectWithoutCategoryInput | MatchCreateOrConnectWithoutCategoryInput[] No
upsert MatchUpsertWithWhereUniqueWithoutCategoryInput | MatchUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany MatchCreateManyCategoryInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutCategoryInput | MatchUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany MatchUpdateManyWithWhereWithoutCategoryInput | MatchUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create EventDoubleCreateWithoutCategoryInput | EventDoubleCreateWithoutCategoryInput[] | EventDoubleUncheckedCreateWithoutCategoryInput | EventDoubleUncheckedCreateWithoutCategoryInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutCategoryInput | EventDoubleCreateOrConnectWithoutCategoryInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutCategoryInput | EventDoubleUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany EventDoubleCreateManyCategoryInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutCategoryInput | EventDoubleUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutCategoryInput | EventDoubleUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

EventRequestUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create EventRequestCreateWithoutCategoryInput | EventRequestCreateWithoutCategoryInput[] | EventRequestUncheckedCreateWithoutCategoryInput | EventRequestUncheckedCreateWithoutCategoryInput[] No
connectOrCreate EventRequestCreateOrConnectWithoutCategoryInput | EventRequestCreateOrConnectWithoutCategoryInput[] No
upsert EventRequestUpsertWithWhereUniqueWithoutCategoryInput | EventRequestUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany EventRequestCreateManyCategoryInputEnvelope No
set EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
disconnect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
delete EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
connect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
update EventRequestUpdateWithWhereUniqueWithoutCategoryInput | EventRequestUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany EventRequestUpdateManyWithWhereWithoutCategoryInput | EventRequestUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No

CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create CategoryGroupCreateWithoutCategoryInput | CategoryGroupCreateWithoutCategoryInput[] | CategoryGroupUncheckedCreateWithoutCategoryInput | CategoryGroupUncheckedCreateWithoutCategoryInput[] No
connectOrCreate CategoryGroupCreateOrConnectWithoutCategoryInput | CategoryGroupCreateOrConnectWithoutCategoryInput[] No
upsert CategoryGroupUpsertWithWhereUniqueWithoutCategoryInput | CategoryGroupUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany CategoryGroupCreateManyCategoryInputEnvelope No
set CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
disconnect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
delete CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
connect CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] No
update CategoryGroupUpdateWithWhereUniqueWithoutCategoryInput | CategoryGroupUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany CategoryGroupUpdateManyWithWhereWithoutCategoryInput | CategoryGroupUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] No

EventCreateNestedOneWithoutEventMatchesInput

Name Type Nullable
create EventCreateWithoutEventMatchesInput | EventUncheckedCreateWithoutEventMatchesInput No
connectOrCreate EventCreateOrConnectWithoutEventMatchesInput No
connect EventWhereUniqueInput No

MatchCreateNestedOneWithoutEventMatchInput

Name Type Nullable
create MatchCreateWithoutEventMatchInput | MatchUncheckedCreateWithoutEventMatchInput No
connectOrCreate MatchCreateOrConnectWithoutEventMatchInput No
connect MatchWhereUniqueInput No


CategoryGroupCreateNestedOneWithoutFinalMatchesInput

Name Type Nullable
create CategoryGroupCreateWithoutFinalMatchesInput | CategoryGroupUncheckedCreateWithoutFinalMatchesInput No
connectOrCreate CategoryGroupCreateOrConnectWithoutFinalMatchesInput No
connect CategoryGroupWhereUniqueInput No

DoublesGroupCreateNestedOneWithoutGroupMatchesInput

Name Type Nullable
create DoublesGroupCreateWithoutGroupMatchesInput | DoublesGroupUncheckedCreateWithoutGroupMatchesInput No
connectOrCreate DoublesGroupCreateOrConnectWithoutGroupMatchesInput No
connect DoublesGroupWhereUniqueInput No


EnumEventMatchTypeFieldUpdateOperationsInput

Name Type Nullable
set EventMatchType No



MatchUpdateManyWithoutWinnerRefNestedInput

Name Type Nullable
create MatchCreateWithoutWinnerRefInput | MatchCreateWithoutWinnerRefInput[] | MatchUncheckedCreateWithoutWinnerRefInput | MatchUncheckedCreateWithoutWinnerRefInput[] No
connectOrCreate MatchCreateOrConnectWithoutWinnerRefInput | MatchCreateOrConnectWithoutWinnerRefInput[] No
upsert MatchUpsertWithWhereUniqueWithoutWinnerRefInput | MatchUpsertWithWhereUniqueWithoutWinnerRefInput[] No
createMany MatchCreateManyWinnerRefInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutWinnerRefInput | MatchUpdateWithWhereUniqueWithoutWinnerRefInput[] No
updateMany MatchUpdateManyWithWhereWithoutWinnerRefInput | MatchUpdateManyWithWhereWithoutWinnerRefInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No



MatchUncheckedUpdateManyWithoutWinnerRefNestedInput

Name Type Nullable
create MatchCreateWithoutWinnerRefInput | MatchCreateWithoutWinnerRefInput[] | MatchUncheckedCreateWithoutWinnerRefInput | MatchUncheckedCreateWithoutWinnerRefInput[] No
connectOrCreate MatchCreateOrConnectWithoutWinnerRefInput | MatchCreateOrConnectWithoutWinnerRefInput[] No
upsert MatchUpsertWithWhereUniqueWithoutWinnerRefInput | MatchUpsertWithWhereUniqueWithoutWinnerRefInput[] No
createMany MatchCreateManyWinnerRefInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutWinnerRefInput | MatchUpdateWithWhereUniqueWithoutWinnerRefInput[] No
updateMany MatchUpdateManyWithWhereWithoutWinnerRefInput | MatchUpdateManyWithWhereWithoutWinnerRefInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No


CategoryCreateNestedOneWithoutMatchesInput

Name Type Nullable
create CategoryCreateWithoutMatchesInput | CategoryUncheckedCreateWithoutMatchesInput No
connectOrCreate CategoryCreateOrConnectWithoutMatchesInput No
connect CategoryWhereUniqueInput No

DoubleCreateNestedOneWithoutMatchesWinsInput

Name Type Nullable
create DoubleCreateWithoutMatchesWinsInput | DoubleUncheckedCreateWithoutMatchesWinsInput No
connectOrCreate DoubleCreateOrConnectWithoutMatchesWinsInput No
connect DoubleWhereUniqueInput No



EventCreateNestedOneWithoutMatchesInput

Name Type Nullable
create EventCreateWithoutMatchesInput | EventUncheckedCreateWithoutMatchesInput No
connectOrCreate EventCreateOrConnectWithoutMatchesInput No
connect EventWhereUniqueInput No

MatchDateCreateNestedOneWithoutMatchInput

Name Type Nullable
create MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput No
connectOrCreate MatchDateCreateOrConnectWithoutMatchInput No
connect MatchDateWhereUniqueInput No

CourtCreateNestedOneWithoutMatchesInput

Name Type Nullable
create CourtCreateWithoutMatchesInput | CourtUncheckedCreateWithoutMatchesInput No
connectOrCreate CourtCreateOrConnectWithoutMatchesInput No
connect CourtWhereUniqueInput No

InviteCreateNestedOneWithoutMatchInput

Name Type Nullable
create InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput No
connectOrCreate InviteCreateOrConnectWithoutMatchInput No
connect InviteWhereUniqueInput No

EventMatchCreateNestedOneWithoutMatchInput

Name Type Nullable
create EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput No
connectOrCreate EventMatchCreateOrConnectWithoutMatchInput No
connect EventMatchWhereUniqueInput No

EventMatchCreateNestedOneWithoutMatchesWinnersRefInput

Name Type Nullable
create EventMatchCreateWithoutMatchesWinnersRefInput | EventMatchUncheckedCreateWithoutMatchesWinnersRefInput No
connectOrCreate EventMatchCreateOrConnectWithoutMatchesWinnersRefInput No
connect EventMatchWhereUniqueInput No




MatchDateUncheckedCreateNestedOneWithoutMatchInput

Name Type Nullable
create MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput No
connectOrCreate MatchDateCreateOrConnectWithoutMatchInput No
connect MatchDateWhereUniqueInput No

InviteUncheckedCreateNestedOneWithoutMatchInput

Name Type Nullable
create InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput No
connectOrCreate InviteCreateOrConnectWithoutMatchInput No
connect InviteWhereUniqueInput No

EventMatchUncheckedCreateNestedOneWithoutMatchInput

Name Type Nullable
create EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput No
connectOrCreate EventMatchCreateOrConnectWithoutMatchInput No
connect EventMatchWhereUniqueInput No

PlayerUpdateManyWithoutMatchesNestedInput

Name Type Nullable
create PlayerCreateWithoutMatchesInput | PlayerCreateWithoutMatchesInput[] | PlayerUncheckedCreateWithoutMatchesInput | PlayerUncheckedCreateWithoutMatchesInput[] No
connectOrCreate PlayerCreateOrConnectWithoutMatchesInput | PlayerCreateOrConnectWithoutMatchesInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutMatchesInput | PlayerUpsertWithWhereUniqueWithoutMatchesInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutMatchesInput | PlayerUpdateWithWhereUniqueWithoutMatchesInput[] No
updateMany PlayerUpdateManyWithWhereWithoutMatchesInput | PlayerUpdateManyWithWhereWithoutMatchesInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No



SetUpdateManyWithoutMatchNestedInput

Name Type Nullable
create SetCreateWithoutMatchInput | SetCreateWithoutMatchInput[] | SetUncheckedCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput[] No
connectOrCreate SetCreateOrConnectWithoutMatchInput | SetCreateOrConnectWithoutMatchInput[] No
upsert SetUpsertWithWhereUniqueWithoutMatchInput | SetUpsertWithWhereUniqueWithoutMatchInput[] No
createMany SetCreateManyMatchInputEnvelope No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutMatchInput | SetUpdateWithWhereUniqueWithoutMatchInput[] No
updateMany SetUpdateManyWithWhereWithoutMatchInput | SetUpdateManyWithWhereWithoutMatchInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

DoubleUpdateManyWithoutMatchesNestedInput

Name Type Nullable
create DoubleCreateWithoutMatchesInput | DoubleCreateWithoutMatchesInput[] | DoubleUncheckedCreateWithoutMatchesInput | DoubleUncheckedCreateWithoutMatchesInput[] No
connectOrCreate DoubleCreateOrConnectWithoutMatchesInput | DoubleCreateOrConnectWithoutMatchesInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutMatchesInput | DoubleUpsertWithWhereUniqueWithoutMatchesInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutMatchesInput | DoubleUpdateWithWhereUniqueWithoutMatchesInput[] No
updateMany DoubleUpdateManyWithWhereWithoutMatchesInput | DoubleUpdateManyWithWhereWithoutMatchesInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No







PlayerUncheckedUpdateManyWithoutMatchesNestedInput

Name Type Nullable
create PlayerCreateWithoutMatchesInput | PlayerCreateWithoutMatchesInput[] | PlayerUncheckedCreateWithoutMatchesInput | PlayerUncheckedCreateWithoutMatchesInput[] No
connectOrCreate PlayerCreateOrConnectWithoutMatchesInput | PlayerCreateOrConnectWithoutMatchesInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutMatchesInput | PlayerUpsertWithWhereUniqueWithoutMatchesInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutMatchesInput | PlayerUpdateWithWhereUniqueWithoutMatchesInput[] No
updateMany PlayerUpdateManyWithWhereWithoutMatchesInput | PlayerUpdateManyWithWhereWithoutMatchesInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

SetUncheckedUpdateManyWithoutMatchNestedInput

Name Type Nullable
create SetCreateWithoutMatchInput | SetCreateWithoutMatchInput[] | SetUncheckedCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput[] No
connectOrCreate SetCreateOrConnectWithoutMatchInput | SetCreateOrConnectWithoutMatchInput[] No
upsert SetUpsertWithWhereUniqueWithoutMatchInput | SetUpsertWithWhereUniqueWithoutMatchInput[] No
createMany SetCreateManyMatchInputEnvelope No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutMatchInput | SetUpdateWithWhereUniqueWithoutMatchInput[] No
updateMany SetUpdateManyWithWhereWithoutMatchInput | SetUpdateManyWithWhereWithoutMatchInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

DoubleUncheckedUpdateManyWithoutMatchesNestedInput

Name Type Nullable
create DoubleCreateWithoutMatchesInput | DoubleCreateWithoutMatchesInput[] | DoubleUncheckedCreateWithoutMatchesInput | DoubleUncheckedCreateWithoutMatchesInput[] No
connectOrCreate DoubleCreateOrConnectWithoutMatchesInput | DoubleCreateOrConnectWithoutMatchesInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutMatchesInput | DoubleUpsertWithWhereUniqueWithoutMatchesInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutMatchesInput | DoubleUpdateWithWhereUniqueWithoutMatchesInput[] No
updateMany DoubleUpdateManyWithWhereWithoutMatchesInput | DoubleUpdateManyWithWhereWithoutMatchesInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No




EventCreateNestedOneWithoutMatchDatesInput

Name Type Nullable
create EventCreateWithoutMatchDatesInput | EventUncheckedCreateWithoutMatchDatesInput No
connectOrCreate EventCreateOrConnectWithoutMatchDatesInput No
connect EventWhereUniqueInput No

MatchCreateNestedOneWithoutMatchDateInput

Name Type Nullable
create MatchCreateWithoutMatchDateInput | MatchUncheckedCreateWithoutMatchDateInput No
connectOrCreate MatchCreateOrConnectWithoutMatchDateInput No
connect MatchWhereUniqueInput No

CourtCreateNestedOneWithoutMatchDatesInput

Name Type Nullable
create CourtCreateWithoutMatchDatesInput | CourtUncheckedCreateWithoutMatchDatesInput No
connectOrCreate CourtCreateOrConnectWithoutMatchDatesInput No
connect CourtWhereUniqueInput No



DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No




EventDoubleUpdateManyWithoutAtRestNestedInput

Name Type Nullable
create EventDoubleCreateWithoutAtRestInput | EventDoubleCreateWithoutAtRestInput[] | EventDoubleUncheckedCreateWithoutAtRestInput | EventDoubleUncheckedCreateWithoutAtRestInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutAtRestInput | EventDoubleCreateOrConnectWithoutAtRestInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutAtRestInput | EventDoubleUpsertWithWhereUniqueWithoutAtRestInput[] No
createMany EventDoubleCreateManyAtRestInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutAtRestInput | EventDoubleUpdateWithWhereUniqueWithoutAtRestInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutAtRestInput | EventDoubleUpdateManyWithWhereWithoutAtRestInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput

Name Type Nullable
create EventDoubleCreateWithoutAtRestInput | EventDoubleCreateWithoutAtRestInput[] | EventDoubleUncheckedCreateWithoutAtRestInput | EventDoubleUncheckedCreateWithoutAtRestInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutAtRestInput | EventDoubleCreateOrConnectWithoutAtRestInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutAtRestInput | EventDoubleUpsertWithWhereUniqueWithoutAtRestInput[] No
createMany EventDoubleCreateManyAtRestInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutAtRestInput | EventDoubleUpdateWithWhereUniqueWithoutAtRestInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutAtRestInput | EventDoubleUpdateManyWithWhereWithoutAtRestInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No


DoubleCreateNestedOneWithoutSetsWinsInput

Name Type Nullable
create DoubleCreateWithoutSetsWinsInput | DoubleUncheckedCreateWithoutSetsWinsInput No
connectOrCreate DoubleCreateOrConnectWithoutSetsWinsInput No
connect DoubleWhereUniqueInput No

MatchCreateNestedOneWithoutSetsInput

Name Type Nullable
create MatchCreateWithoutSetsInput | MatchUncheckedCreateWithoutSetsInput No
connectOrCreate MatchCreateOrConnectWithoutSetsInput No
connect MatchWhereUniqueInput No






EnumSetTypeFieldUpdateOperationsInput

Name Type Nullable
set SetType No

DoubleUpdateManyWithoutSetsNestedInput

Name Type Nullable
create DoubleCreateWithoutSetsInput | DoubleCreateWithoutSetsInput[] | DoubleUncheckedCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput[] No
connectOrCreate DoubleCreateOrConnectWithoutSetsInput | DoubleCreateOrConnectWithoutSetsInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutSetsInput | DoubleUpsertWithWhereUniqueWithoutSetsInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutSetsInput | DoubleUpdateWithWhereUniqueWithoutSetsInput[] No
updateMany DoubleUpdateManyWithWhereWithoutSetsInput | DoubleUpdateManyWithWhereWithoutSetsInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No



GameUpdateManyWithoutSetNestedInput

Name Type Nullable
create GameCreateWithoutSetInput | GameCreateWithoutSetInput[] | GameUncheckedCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput[] No
connectOrCreate GameCreateOrConnectWithoutSetInput | GameCreateOrConnectWithoutSetInput[] No
upsert GameUpsertWithWhereUniqueWithoutSetInput | GameUpsertWithWhereUniqueWithoutSetInput[] No
createMany GameCreateManySetInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutSetInput | GameUpdateWithWhereUniqueWithoutSetInput[] No
updateMany GameUpdateManyWithWhereWithoutSetInput | GameUpdateManyWithWhereWithoutSetInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

EventUpdateManyWithoutSetsNestedInput

Name Type Nullable
create EventCreateWithoutSetsInput | EventCreateWithoutSetsInput[] | EventUncheckedCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput[] No
connectOrCreate EventCreateOrConnectWithoutSetsInput | EventCreateOrConnectWithoutSetsInput[] No
upsert EventUpsertWithWhereUniqueWithoutSetsInput | EventUpsertWithWhereUniqueWithoutSetsInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutSetsInput | EventUpdateWithWhereUniqueWithoutSetsInput[] No
updateMany EventUpdateManyWithWhereWithoutSetsInput | EventUpdateManyWithWhereWithoutSetsInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

DoubleUncheckedUpdateManyWithoutSetsNestedInput

Name Type Nullable
create DoubleCreateWithoutSetsInput | DoubleCreateWithoutSetsInput[] | DoubleUncheckedCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput[] No
connectOrCreate DoubleCreateOrConnectWithoutSetsInput | DoubleCreateOrConnectWithoutSetsInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutSetsInput | DoubleUpsertWithWhereUniqueWithoutSetsInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutSetsInput | DoubleUpdateWithWhereUniqueWithoutSetsInput[] No
updateMany DoubleUpdateManyWithWhereWithoutSetsInput | DoubleUpdateManyWithWhereWithoutSetsInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No

GameUncheckedUpdateManyWithoutSetNestedInput

Name Type Nullable
create GameCreateWithoutSetInput | GameCreateWithoutSetInput[] | GameUncheckedCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput[] No
connectOrCreate GameCreateOrConnectWithoutSetInput | GameCreateOrConnectWithoutSetInput[] No
upsert GameUpsertWithWhereUniqueWithoutSetInput | GameUpsertWithWhereUniqueWithoutSetInput[] No
createMany GameCreateManySetInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutSetInput | GameUpdateWithWhereUniqueWithoutSetInput[] No
updateMany GameUpdateManyWithWhereWithoutSetInput | GameUpdateManyWithWhereWithoutSetInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

EventUncheckedUpdateManyWithoutSetsNestedInput

Name Type Nullable
create EventCreateWithoutSetsInput | EventCreateWithoutSetsInput[] | EventUncheckedCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput[] No
connectOrCreate EventCreateOrConnectWithoutSetsInput | EventCreateOrConnectWithoutSetsInput[] No
upsert EventUpsertWithWhereUniqueWithoutSetsInput | EventUpsertWithWhereUniqueWithoutSetsInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutSetsInput | EventUpdateWithWhereUniqueWithoutSetsInput[] No
updateMany EventUpdateManyWithWhereWithoutSetsInput | EventUpdateManyWithWhereWithoutSetsInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

SetCreateNestedOneWithoutGamesInput

Name Type Nullable
create SetCreateWithoutGamesInput | SetUncheckedCreateWithoutGamesInput No
connectOrCreate SetCreateOrConnectWithoutGamesInput No
connect SetWhereUniqueInput No


DoubleCreateNestedOneWithoutGamesWinsInput

Name Type Nullable
create DoubleCreateWithoutGamesWinsInput | DoubleUncheckedCreateWithoutGamesWinsInput No
connectOrCreate DoubleCreateOrConnectWithoutGamesWinsInput No
connect DoubleWhereUniqueInput No





DoubleUpdateManyWithoutGamesNestedInput

Name Type Nullable
create DoubleCreateWithoutGamesInput | DoubleCreateWithoutGamesInput[] | DoubleUncheckedCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput[] No
connectOrCreate DoubleCreateOrConnectWithoutGamesInput | DoubleCreateOrConnectWithoutGamesInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutGamesInput | DoubleUpsertWithWhereUniqueWithoutGamesInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutGamesInput | DoubleUpdateWithWhereUniqueWithoutGamesInput[] No
updateMany DoubleUpdateManyWithWhereWithoutGamesInput | DoubleUpdateManyWithWhereWithoutGamesInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No


EventUpdateManyWithoutGamesNestedInput

Name Type Nullable
create EventCreateWithoutGamesInput | EventCreateWithoutGamesInput[] | EventUncheckedCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput[] No
connectOrCreate EventCreateOrConnectWithoutGamesInput | EventCreateOrConnectWithoutGamesInput[] No
upsert EventUpsertWithWhereUniqueWithoutGamesInput | EventUpsertWithWhereUniqueWithoutGamesInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutGamesInput | EventUpdateWithWhereUniqueWithoutGamesInput[] No
updateMany EventUpdateManyWithWhereWithoutGamesInput | EventUpdateManyWithWhereWithoutGamesInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

DoubleUncheckedUpdateManyWithoutGamesNestedInput

Name Type Nullable
create DoubleCreateWithoutGamesInput | DoubleCreateWithoutGamesInput[] | DoubleUncheckedCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput[] No
connectOrCreate DoubleCreateOrConnectWithoutGamesInput | DoubleCreateOrConnectWithoutGamesInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutGamesInput | DoubleUpsertWithWhereUniqueWithoutGamesInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutGamesInput | DoubleUpdateWithWhereUniqueWithoutGamesInput[] No
updateMany DoubleUpdateManyWithWhereWithoutGamesInput | DoubleUpdateManyWithWhereWithoutGamesInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No

EventUncheckedUpdateManyWithoutGamesNestedInput

Name Type Nullable
create EventCreateWithoutGamesInput | EventCreateWithoutGamesInput[] | EventUncheckedCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput[] No
connectOrCreate EventCreateOrConnectWithoutGamesInput | EventCreateOrConnectWithoutGamesInput[] No
upsert EventUpsertWithWhereUniqueWithoutGamesInput | EventUpsertWithWhereUniqueWithoutGamesInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutGamesInput | EventUpdateWithWhereUniqueWithoutGamesInput[] No
updateMany EventUpdateManyWithWhereWithoutGamesInput | EventUpdateManyWithWhereWithoutGamesInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

PlayerCreateNestedOneWithoutUserInput

Name Type Nullable
create PlayerCreateWithoutUserInput | PlayerUncheckedCreateWithoutUserInput No
connectOrCreate PlayerCreateOrConnectWithoutUserInput No
connect PlayerWhereUniqueInput No

EnumRoleFieldUpdateOperationsInput

Name Type Nullable
set Role No



DoubleCreateNestedOneWithoutInvitesInput

Name Type Nullable
create DoubleCreateWithoutInvitesInput | DoubleUncheckedCreateWithoutInvitesInput No
connectOrCreate DoubleCreateOrConnectWithoutInvitesInput No
connect DoubleWhereUniqueInput No

EventCreateNestedOneWithoutInviteInput

Name Type Nullable
create EventCreateWithoutInviteInput | EventUncheckedCreateWithoutInviteInput No
connectOrCreate EventCreateOrConnectWithoutInviteInput No
connect EventWhereUniqueInput No

MatchCreateNestedOneWithoutInviteInput

Name Type Nullable
create MatchCreateWithoutInviteInput | MatchUncheckedCreateWithoutInviteInput No
connectOrCreate MatchCreateOrConnectWithoutInviteInput No
connect MatchWhereUniqueInput No


EnumInviteTypeFieldUpdateOperationsInput

Name Type Nullable
set InviteType No

PlayerUpdateManyWithoutInvitesNestedInput

Name Type Nullable
create PlayerCreateWithoutInvitesInput | PlayerCreateWithoutInvitesInput[] | PlayerUncheckedCreateWithoutInvitesInput | PlayerUncheckedCreateWithoutInvitesInput[] No
connectOrCreate PlayerCreateOrConnectWithoutInvitesInput | PlayerCreateOrConnectWithoutInvitesInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutInvitesInput | PlayerUpsertWithWhereUniqueWithoutInvitesInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutInvitesInput | PlayerUpdateWithWhereUniqueWithoutInvitesInput[] No
updateMany PlayerUpdateManyWithWhereWithoutInvitesInput | PlayerUpdateManyWithWhereWithoutInvitesInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No




PlayerUncheckedUpdateManyWithoutInvitesNestedInput

Name Type Nullable
create PlayerCreateWithoutInvitesInput | PlayerCreateWithoutInvitesInput[] | PlayerUncheckedCreateWithoutInvitesInput | PlayerUncheckedCreateWithoutInvitesInput[] No
connectOrCreate PlayerCreateOrConnectWithoutInvitesInput | PlayerCreateOrConnectWithoutInvitesInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutInvitesInput | PlayerUpsertWithWhereUniqueWithoutInvitesInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutInvitesInput | PlayerUpdateWithWhereUniqueWithoutInvitesInput[] No
updateMany PlayerUpdateManyWithWhereWithoutInvitesInput | PlayerUpdateManyWithWhereWithoutInvitesInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

CategoryCreateNestedOneWithoutPlayersInput

Name Type Nullable
create CategoryCreateWithoutPlayersInput | CategoryUncheckedCreateWithoutPlayersInput No
connectOrCreate CategoryCreateOrConnectWithoutPlayersInput No
connect CategoryWhereUniqueInput No




UserCreateNestedOneWithoutPlayerInput

Name Type Nullable
create UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput No
connectOrCreate UserCreateOrConnectWithoutPlayerInput No
connect UserWhereUniqueInput No





UserUncheckedCreateNestedOneWithoutPlayerInput

Name Type Nullable
create UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput No
connectOrCreate UserCreateOrConnectWithoutPlayerInput No
connect UserWhereUniqueInput No


NullableEnumPlayerPositionFieldUpdateOperationsInput

Name Type Nullable
set PlayerPosition | Null Yes


MatchUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create MatchCreateWithoutPlayersInput | MatchCreateWithoutPlayersInput[] | MatchUncheckedCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput[] No
connectOrCreate MatchCreateOrConnectWithoutPlayersInput | MatchCreateOrConnectWithoutPlayersInput[] No
upsert MatchUpsertWithWhereUniqueWithoutPlayersInput | MatchUpsertWithWhereUniqueWithoutPlayersInput[] No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutPlayersInput | MatchUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany MatchUpdateManyWithWhereWithoutPlayersInput | MatchUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

DoubleUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create DoubleCreateWithoutPlayersInput | DoubleCreateWithoutPlayersInput[] | DoubleUncheckedCreateWithoutPlayersInput | DoubleUncheckedCreateWithoutPlayersInput[] No
connectOrCreate DoubleCreateOrConnectWithoutPlayersInput | DoubleCreateOrConnectWithoutPlayersInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutPlayersInput | DoubleUpsertWithWhereUniqueWithoutPlayersInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutPlayersInput | DoubleUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany DoubleUpdateManyWithWhereWithoutPlayersInput | DoubleUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No

EventUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create EventCreateWithoutPlayersInput | EventCreateWithoutPlayersInput[] | EventUncheckedCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput[] No
connectOrCreate EventCreateOrConnectWithoutPlayersInput | EventCreateOrConnectWithoutPlayersInput[] No
upsert EventUpsertWithWhereUniqueWithoutPlayersInput | EventUpsertWithWhereUniqueWithoutPlayersInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutPlayersInput | EventUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany EventUpdateManyWithWhereWithoutPlayersInput | EventUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No


InviteUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create InviteCreateWithoutPlayersInput | InviteCreateWithoutPlayersInput[] | InviteUncheckedCreateWithoutPlayersInput | InviteUncheckedCreateWithoutPlayersInput[] No
connectOrCreate InviteCreateOrConnectWithoutPlayersInput | InviteCreateOrConnectWithoutPlayersInput[] No
upsert InviteUpsertWithWhereUniqueWithoutPlayersInput | InviteUpsertWithWhereUniqueWithoutPlayersInput[] No
set InviteWhereUniqueInput | InviteWhereUniqueInput[] No
disconnect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
delete InviteWhereUniqueInput | InviteWhereUniqueInput[] No
connect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
update InviteUpdateWithWhereUniqueWithoutPlayersInput | InviteUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany InviteUpdateManyWithWhereWithoutPlayersInput | InviteUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany InviteScalarWhereInput | InviteScalarWhereInput[] No

MatchUncheckedUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create MatchCreateWithoutPlayersInput | MatchCreateWithoutPlayersInput[] | MatchUncheckedCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput[] No
connectOrCreate MatchCreateOrConnectWithoutPlayersInput | MatchCreateOrConnectWithoutPlayersInput[] No
upsert MatchUpsertWithWhereUniqueWithoutPlayersInput | MatchUpsertWithWhereUniqueWithoutPlayersInput[] No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutPlayersInput | MatchUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany MatchUpdateManyWithWhereWithoutPlayersInput | MatchUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

DoubleUncheckedUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create DoubleCreateWithoutPlayersInput | DoubleCreateWithoutPlayersInput[] | DoubleUncheckedCreateWithoutPlayersInput | DoubleUncheckedCreateWithoutPlayersInput[] No
connectOrCreate DoubleCreateOrConnectWithoutPlayersInput | DoubleCreateOrConnectWithoutPlayersInput[] No
upsert DoubleUpsertWithWhereUniqueWithoutPlayersInput | DoubleUpsertWithWhereUniqueWithoutPlayersInput[] No
set DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
disconnect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
delete DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
connect DoubleWhereUniqueInput | DoubleWhereUniqueInput[] No
update DoubleUpdateWithWhereUniqueWithoutPlayersInput | DoubleUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany DoubleUpdateManyWithWhereWithoutPlayersInput | DoubleUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany DoubleScalarWhereInput | DoubleScalarWhereInput[] No

EventUncheckedUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create EventCreateWithoutPlayersInput | EventCreateWithoutPlayersInput[] | EventUncheckedCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput[] No
connectOrCreate EventCreateOrConnectWithoutPlayersInput | EventCreateOrConnectWithoutPlayersInput[] No
upsert EventUpsertWithWhereUniqueWithoutPlayersInput | EventUpsertWithWhereUniqueWithoutPlayersInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutPlayersInput | EventUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany EventUpdateManyWithWhereWithoutPlayersInput | EventUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No


InviteUncheckedUpdateManyWithoutPlayersNestedInput

Name Type Nullable
create InviteCreateWithoutPlayersInput | InviteCreateWithoutPlayersInput[] | InviteUncheckedCreateWithoutPlayersInput | InviteUncheckedCreateWithoutPlayersInput[] No
connectOrCreate InviteCreateOrConnectWithoutPlayersInput | InviteCreateOrConnectWithoutPlayersInput[] No
upsert InviteUpsertWithWhereUniqueWithoutPlayersInput | InviteUpsertWithWhereUniqueWithoutPlayersInput[] No
set InviteWhereUniqueInput | InviteWhereUniqueInput[] No
disconnect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
delete InviteWhereUniqueInput | InviteWhereUniqueInput[] No
connect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
update InviteUpdateWithWhereUniqueWithoutPlayersInput | InviteUpdateWithWhereUniqueWithoutPlayersInput[] No
updateMany InviteUpdateManyWithWhereWithoutPlayersInput | InviteUpdateManyWithWhereWithoutPlayersInput[] No
deleteMany InviteScalarWhereInput | InviteScalarWhereInput[] No



CategoryCreateNestedOneWithoutDoublesInput

Name Type Nullable
create CategoryCreateWithoutDoublesInput | CategoryUncheckedCreateWithoutDoublesInput No
connectOrCreate CategoryCreateOrConnectWithoutDoublesInput No
connect CategoryWhereUniqueInput No























PlayerUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create PlayerCreateWithoutDoublesInput | PlayerCreateWithoutDoublesInput[] | PlayerUncheckedCreateWithoutDoublesInput | PlayerUncheckedCreateWithoutDoublesInput[] No
connectOrCreate PlayerCreateOrConnectWithoutDoublesInput | PlayerCreateOrConnectWithoutDoublesInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutDoublesInput | PlayerUpsertWithWhereUniqueWithoutDoublesInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutDoublesInput | PlayerUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany PlayerUpdateManyWithWhereWithoutDoublesInput | PlayerUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

MatchUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create MatchCreateWithoutDoublesInput | MatchCreateWithoutDoublesInput[] | MatchUncheckedCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput[] No
connectOrCreate MatchCreateOrConnectWithoutDoublesInput | MatchCreateOrConnectWithoutDoublesInput[] No
upsert MatchUpsertWithWhereUniqueWithoutDoublesInput | MatchUpsertWithWhereUniqueWithoutDoublesInput[] No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutDoublesInput | MatchUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany MatchUpdateManyWithWhereWithoutDoublesInput | MatchUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No


GameUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create GameCreateWithoutDoublesInput | GameCreateWithoutDoublesInput[] | GameUncheckedCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput[] No
connectOrCreate GameCreateOrConnectWithoutDoublesInput | GameCreateOrConnectWithoutDoublesInput[] No
upsert GameUpsertWithWhereUniqueWithoutDoublesInput | GameUpsertWithWhereUniqueWithoutDoublesInput[] No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutDoublesInput | GameUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany GameUpdateManyWithWhereWithoutDoublesInput | GameUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

SetUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create SetCreateWithoutDoublesInput | SetCreateWithoutDoublesInput[] | SetUncheckedCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput[] No
connectOrCreate SetCreateOrConnectWithoutDoublesInput | SetCreateOrConnectWithoutDoublesInput[] No
upsert SetUpsertWithWhereUniqueWithoutDoublesInput | SetUpsertWithWhereUniqueWithoutDoublesInput[] No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutDoublesInput | SetUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany SetUpdateManyWithWhereWithoutDoublesInput | SetUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

MatchUpdateManyWithoutWinnerNestedInput

Name Type Nullable
create MatchCreateWithoutWinnerInput | MatchCreateWithoutWinnerInput[] | MatchUncheckedCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput[] No
connectOrCreate MatchCreateOrConnectWithoutWinnerInput | MatchCreateOrConnectWithoutWinnerInput[] No
upsert MatchUpsertWithWhereUniqueWithoutWinnerInput | MatchUpsertWithWhereUniqueWithoutWinnerInput[] No
createMany MatchCreateManyWinnerInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutWinnerInput | MatchUpdateWithWhereUniqueWithoutWinnerInput[] No
updateMany MatchUpdateManyWithWhereWithoutWinnerInput | MatchUpdateManyWithWhereWithoutWinnerInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

SetUpdateManyWithoutWinnerNestedInput

Name Type Nullable
create SetCreateWithoutWinnerInput | SetCreateWithoutWinnerInput[] | SetUncheckedCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput[] No
connectOrCreate SetCreateOrConnectWithoutWinnerInput | SetCreateOrConnectWithoutWinnerInput[] No
upsert SetUpsertWithWhereUniqueWithoutWinnerInput | SetUpsertWithWhereUniqueWithoutWinnerInput[] No
createMany SetCreateManyWinnerInputEnvelope No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutWinnerInput | SetUpdateWithWhereUniqueWithoutWinnerInput[] No
updateMany SetUpdateManyWithWhereWithoutWinnerInput | SetUpdateManyWithWhereWithoutWinnerInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

GameUpdateManyWithoutWinnerNestedInput

Name Type Nullable
create GameCreateWithoutWinnerInput | GameCreateWithoutWinnerInput[] | GameUncheckedCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput[] No
connectOrCreate GameCreateOrConnectWithoutWinnerInput | GameCreateOrConnectWithoutWinnerInput[] No
upsert GameUpsertWithWhereUniqueWithoutWinnerInput | GameUpsertWithWhereUniqueWithoutWinnerInput[] No
createMany GameCreateManyWinnerInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutWinnerInput | GameUpdateWithWhereUniqueWithoutWinnerInput[] No
updateMany GameUpdateManyWithWhereWithoutWinnerInput | GameUpdateManyWithWhereWithoutWinnerInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

EventRequestUpdateManyWithoutDoubleNestedInput

Name Type Nullable
create EventRequestCreateWithoutDoubleInput | EventRequestCreateWithoutDoubleInput[] | EventRequestUncheckedCreateWithoutDoubleInput | EventRequestUncheckedCreateWithoutDoubleInput[] No
connectOrCreate EventRequestCreateOrConnectWithoutDoubleInput | EventRequestCreateOrConnectWithoutDoubleInput[] No
upsert EventRequestUpsertWithWhereUniqueWithoutDoubleInput | EventRequestUpsertWithWhereUniqueWithoutDoubleInput[] No
createMany EventRequestCreateManyDoubleInputEnvelope No
set EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
disconnect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
delete EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
connect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
update EventRequestUpdateWithWhereUniqueWithoutDoubleInput | EventRequestUpdateWithWhereUniqueWithoutDoubleInput[] No
updateMany EventRequestUpdateManyWithWhereWithoutDoubleInput | EventRequestUpdateManyWithWhereWithoutDoubleInput[] No
deleteMany EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No

EventDoubleUpdateManyWithoutDoubleNestedInput

Name Type Nullable
create EventDoubleCreateWithoutDoubleInput | EventDoubleCreateWithoutDoubleInput[] | EventDoubleUncheckedCreateWithoutDoubleInput | EventDoubleUncheckedCreateWithoutDoubleInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutDoubleInput | EventDoubleCreateOrConnectWithoutDoubleInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutDoubleInput | EventDoubleUpsertWithWhereUniqueWithoutDoubleInput[] No
createMany EventDoubleCreateManyDoubleInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutDoubleInput | EventDoubleUpdateWithWhereUniqueWithoutDoubleInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutDoubleInput | EventDoubleUpdateManyWithWhereWithoutDoubleInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

InviteUpdateManyWithoutDoubleNestedInput

Name Type Nullable
create InviteCreateWithoutDoubleInput | InviteCreateWithoutDoubleInput[] | InviteUncheckedCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput[] No
connectOrCreate InviteCreateOrConnectWithoutDoubleInput | InviteCreateOrConnectWithoutDoubleInput[] No
upsert InviteUpsertWithWhereUniqueWithoutDoubleInput | InviteUpsertWithWhereUniqueWithoutDoubleInput[] No
createMany InviteCreateManyDoubleInputEnvelope No
set InviteWhereUniqueInput | InviteWhereUniqueInput[] No
disconnect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
delete InviteWhereUniqueInput | InviteWhereUniqueInput[] No
connect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
update InviteUpdateWithWhereUniqueWithoutDoubleInput | InviteUpdateWithWhereUniqueWithoutDoubleInput[] No
updateMany InviteUpdateManyWithWhereWithoutDoubleInput | InviteUpdateManyWithWhereWithoutDoubleInput[] No
deleteMany InviteScalarWhereInput | InviteScalarWhereInput[] No

DoublesGroupUpdateManyWithoutFirstPlaceNestedInput

Name Type Nullable
create DoublesGroupCreateWithoutFirstPlaceInput | DoublesGroupCreateWithoutFirstPlaceInput[] | DoublesGroupUncheckedCreateWithoutFirstPlaceInput | DoublesGroupUncheckedCreateWithoutFirstPlaceInput[] No
connectOrCreate DoublesGroupCreateOrConnectWithoutFirstPlaceInput | DoublesGroupCreateOrConnectWithoutFirstPlaceInput[] No
upsert DoublesGroupUpsertWithWhereUniqueWithoutFirstPlaceInput | DoublesGroupUpsertWithWhereUniqueWithoutFirstPlaceInput[] No
createMany DoublesGroupCreateManyFirstPlaceInputEnvelope No
set DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
disconnect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
delete DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
connect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
update DoublesGroupUpdateWithWhereUniqueWithoutFirstPlaceInput | DoublesGroupUpdateWithWhereUniqueWithoutFirstPlaceInput[] No
updateMany DoublesGroupUpdateManyWithWhereWithoutFirstPlaceInput | DoublesGroupUpdateManyWithWhereWithoutFirstPlaceInput[] No
deleteMany DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No

DoublesGroupUpdateManyWithoutSecondPlaceNestedInput

Name Type Nullable
create DoublesGroupCreateWithoutSecondPlaceInput | DoublesGroupCreateWithoutSecondPlaceInput[] | DoublesGroupUncheckedCreateWithoutSecondPlaceInput | DoublesGroupUncheckedCreateWithoutSecondPlaceInput[] No
connectOrCreate DoublesGroupCreateOrConnectWithoutSecondPlaceInput | DoublesGroupCreateOrConnectWithoutSecondPlaceInput[] No
upsert DoublesGroupUpsertWithWhereUniqueWithoutSecondPlaceInput | DoublesGroupUpsertWithWhereUniqueWithoutSecondPlaceInput[] No
createMany DoublesGroupCreateManySecondPlaceInputEnvelope No
set DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
disconnect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
delete DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
connect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
update DoublesGroupUpdateWithWhereUniqueWithoutSecondPlaceInput | DoublesGroupUpdateWithWhereUniqueWithoutSecondPlaceInput[] No
updateMany DoublesGroupUpdateManyWithWhereWithoutSecondPlaceInput | DoublesGroupUpdateManyWithWhereWithoutSecondPlaceInput[] No
deleteMany DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No

PlayerUncheckedUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create PlayerCreateWithoutDoublesInput | PlayerCreateWithoutDoublesInput[] | PlayerUncheckedCreateWithoutDoublesInput | PlayerUncheckedCreateWithoutDoublesInput[] No
connectOrCreate PlayerCreateOrConnectWithoutDoublesInput | PlayerCreateOrConnectWithoutDoublesInput[] No
upsert PlayerUpsertWithWhereUniqueWithoutDoublesInput | PlayerUpsertWithWhereUniqueWithoutDoublesInput[] No
set PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
disconnect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
delete PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
connect PlayerWhereUniqueInput | PlayerWhereUniqueInput[] No
update PlayerUpdateWithWhereUniqueWithoutDoublesInput | PlayerUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany PlayerUpdateManyWithWhereWithoutDoublesInput | PlayerUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany PlayerScalarWhereInput | PlayerScalarWhereInput[] No

MatchUncheckedUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create MatchCreateWithoutDoublesInput | MatchCreateWithoutDoublesInput[] | MatchUncheckedCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput[] No
connectOrCreate MatchCreateOrConnectWithoutDoublesInput | MatchCreateOrConnectWithoutDoublesInput[] No
upsert MatchUpsertWithWhereUniqueWithoutDoublesInput | MatchUpsertWithWhereUniqueWithoutDoublesInput[] No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutDoublesInput | MatchUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany MatchUpdateManyWithWhereWithoutDoublesInput | MatchUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

GameUncheckedUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create GameCreateWithoutDoublesInput | GameCreateWithoutDoublesInput[] | GameUncheckedCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput[] No
connectOrCreate GameCreateOrConnectWithoutDoublesInput | GameCreateOrConnectWithoutDoublesInput[] No
upsert GameUpsertWithWhereUniqueWithoutDoublesInput | GameUpsertWithWhereUniqueWithoutDoublesInput[] No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutDoublesInput | GameUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany GameUpdateManyWithWhereWithoutDoublesInput | GameUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

SetUncheckedUpdateManyWithoutDoublesNestedInput

Name Type Nullable
create SetCreateWithoutDoublesInput | SetCreateWithoutDoublesInput[] | SetUncheckedCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput[] No
connectOrCreate SetCreateOrConnectWithoutDoublesInput | SetCreateOrConnectWithoutDoublesInput[] No
upsert SetUpsertWithWhereUniqueWithoutDoublesInput | SetUpsertWithWhereUniqueWithoutDoublesInput[] No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutDoublesInput | SetUpdateWithWhereUniqueWithoutDoublesInput[] No
updateMany SetUpdateManyWithWhereWithoutDoublesInput | SetUpdateManyWithWhereWithoutDoublesInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

MatchUncheckedUpdateManyWithoutWinnerNestedInput

Name Type Nullable
create MatchCreateWithoutWinnerInput | MatchCreateWithoutWinnerInput[] | MatchUncheckedCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput[] No
connectOrCreate MatchCreateOrConnectWithoutWinnerInput | MatchCreateOrConnectWithoutWinnerInput[] No
upsert MatchUpsertWithWhereUniqueWithoutWinnerInput | MatchUpsertWithWhereUniqueWithoutWinnerInput[] No
createMany MatchCreateManyWinnerInputEnvelope No
set MatchWhereUniqueInput | MatchWhereUniqueInput[] No
disconnect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
delete MatchWhereUniqueInput | MatchWhereUniqueInput[] No
connect MatchWhereUniqueInput | MatchWhereUniqueInput[] No
update MatchUpdateWithWhereUniqueWithoutWinnerInput | MatchUpdateWithWhereUniqueWithoutWinnerInput[] No
updateMany MatchUpdateManyWithWhereWithoutWinnerInput | MatchUpdateManyWithWhereWithoutWinnerInput[] No
deleteMany MatchScalarWhereInput | MatchScalarWhereInput[] No

SetUncheckedUpdateManyWithoutWinnerNestedInput

Name Type Nullable
create SetCreateWithoutWinnerInput | SetCreateWithoutWinnerInput[] | SetUncheckedCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput[] No
connectOrCreate SetCreateOrConnectWithoutWinnerInput | SetCreateOrConnectWithoutWinnerInput[] No
upsert SetUpsertWithWhereUniqueWithoutWinnerInput | SetUpsertWithWhereUniqueWithoutWinnerInput[] No
createMany SetCreateManyWinnerInputEnvelope No
set SetWhereUniqueInput | SetWhereUniqueInput[] No
disconnect SetWhereUniqueInput | SetWhereUniqueInput[] No
delete SetWhereUniqueInput | SetWhereUniqueInput[] No
connect SetWhereUniqueInput | SetWhereUniqueInput[] No
update SetUpdateWithWhereUniqueWithoutWinnerInput | SetUpdateWithWhereUniqueWithoutWinnerInput[] No
updateMany SetUpdateManyWithWhereWithoutWinnerInput | SetUpdateManyWithWhereWithoutWinnerInput[] No
deleteMany SetScalarWhereInput | SetScalarWhereInput[] No

GameUncheckedUpdateManyWithoutWinnerNestedInput

Name Type Nullable
create GameCreateWithoutWinnerInput | GameCreateWithoutWinnerInput[] | GameUncheckedCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput[] No
connectOrCreate GameCreateOrConnectWithoutWinnerInput | GameCreateOrConnectWithoutWinnerInput[] No
upsert GameUpsertWithWhereUniqueWithoutWinnerInput | GameUpsertWithWhereUniqueWithoutWinnerInput[] No
createMany GameCreateManyWinnerInputEnvelope No
set GameWhereUniqueInput | GameWhereUniqueInput[] No
disconnect GameWhereUniqueInput | GameWhereUniqueInput[] No
delete GameWhereUniqueInput | GameWhereUniqueInput[] No
connect GameWhereUniqueInput | GameWhereUniqueInput[] No
update GameUpdateWithWhereUniqueWithoutWinnerInput | GameUpdateWithWhereUniqueWithoutWinnerInput[] No
updateMany GameUpdateManyWithWhereWithoutWinnerInput | GameUpdateManyWithWhereWithoutWinnerInput[] No
deleteMany GameScalarWhereInput | GameScalarWhereInput[] No

EventRequestUncheckedUpdateManyWithoutDoubleNestedInput

Name Type Nullable
create EventRequestCreateWithoutDoubleInput | EventRequestCreateWithoutDoubleInput[] | EventRequestUncheckedCreateWithoutDoubleInput | EventRequestUncheckedCreateWithoutDoubleInput[] No
connectOrCreate EventRequestCreateOrConnectWithoutDoubleInput | EventRequestCreateOrConnectWithoutDoubleInput[] No
upsert EventRequestUpsertWithWhereUniqueWithoutDoubleInput | EventRequestUpsertWithWhereUniqueWithoutDoubleInput[] No
createMany EventRequestCreateManyDoubleInputEnvelope No
set EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
disconnect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
delete EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
connect EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] No
update EventRequestUpdateWithWhereUniqueWithoutDoubleInput | EventRequestUpdateWithWhereUniqueWithoutDoubleInput[] No
updateMany EventRequestUpdateManyWithWhereWithoutDoubleInput | EventRequestUpdateManyWithWhereWithoutDoubleInput[] No
deleteMany EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No

EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput

Name Type Nullable
create EventDoubleCreateWithoutDoubleInput | EventDoubleCreateWithoutDoubleInput[] | EventDoubleUncheckedCreateWithoutDoubleInput | EventDoubleUncheckedCreateWithoutDoubleInput[] No
connectOrCreate EventDoubleCreateOrConnectWithoutDoubleInput | EventDoubleCreateOrConnectWithoutDoubleInput[] No
upsert EventDoubleUpsertWithWhereUniqueWithoutDoubleInput | EventDoubleUpsertWithWhereUniqueWithoutDoubleInput[] No
createMany EventDoubleCreateManyDoubleInputEnvelope No
set EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
disconnect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
delete EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
connect EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] No
update EventDoubleUpdateWithWhereUniqueWithoutDoubleInput | EventDoubleUpdateWithWhereUniqueWithoutDoubleInput[] No
updateMany EventDoubleUpdateManyWithWhereWithoutDoubleInput | EventDoubleUpdateManyWithWhereWithoutDoubleInput[] No
deleteMany EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No

InviteUncheckedUpdateManyWithoutDoubleNestedInput

Name Type Nullable
create InviteCreateWithoutDoubleInput | InviteCreateWithoutDoubleInput[] | InviteUncheckedCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput[] No
connectOrCreate InviteCreateOrConnectWithoutDoubleInput | InviteCreateOrConnectWithoutDoubleInput[] No
upsert InviteUpsertWithWhereUniqueWithoutDoubleInput | InviteUpsertWithWhereUniqueWithoutDoubleInput[] No
createMany InviteCreateManyDoubleInputEnvelope No
set InviteWhereUniqueInput | InviteWhereUniqueInput[] No
disconnect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
delete InviteWhereUniqueInput | InviteWhereUniqueInput[] No
connect InviteWhereUniqueInput | InviteWhereUniqueInput[] No
update InviteUpdateWithWhereUniqueWithoutDoubleInput | InviteUpdateWithWhereUniqueWithoutDoubleInput[] No
updateMany InviteUpdateManyWithWhereWithoutDoubleInput | InviteUpdateManyWithWhereWithoutDoubleInput[] No
deleteMany InviteScalarWhereInput | InviteScalarWhereInput[] No

DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput

Name Type Nullable
create DoublesGroupCreateWithoutFirstPlaceInput | DoublesGroupCreateWithoutFirstPlaceInput[] | DoublesGroupUncheckedCreateWithoutFirstPlaceInput | DoublesGroupUncheckedCreateWithoutFirstPlaceInput[] No
connectOrCreate DoublesGroupCreateOrConnectWithoutFirstPlaceInput | DoublesGroupCreateOrConnectWithoutFirstPlaceInput[] No
upsert DoublesGroupUpsertWithWhereUniqueWithoutFirstPlaceInput | DoublesGroupUpsertWithWhereUniqueWithoutFirstPlaceInput[] No
createMany DoublesGroupCreateManyFirstPlaceInputEnvelope No
set DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
disconnect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
delete DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
connect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
update DoublesGroupUpdateWithWhereUniqueWithoutFirstPlaceInput | DoublesGroupUpdateWithWhereUniqueWithoutFirstPlaceInput[] No
updateMany DoublesGroupUpdateManyWithWhereWithoutFirstPlaceInput | DoublesGroupUpdateManyWithWhereWithoutFirstPlaceInput[] No
deleteMany DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No

DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput

Name Type Nullable
create DoublesGroupCreateWithoutSecondPlaceInput | DoublesGroupCreateWithoutSecondPlaceInput[] | DoublesGroupUncheckedCreateWithoutSecondPlaceInput | DoublesGroupUncheckedCreateWithoutSecondPlaceInput[] No
connectOrCreate DoublesGroupCreateOrConnectWithoutSecondPlaceInput | DoublesGroupCreateOrConnectWithoutSecondPlaceInput[] No
upsert DoublesGroupUpsertWithWhereUniqueWithoutSecondPlaceInput | DoublesGroupUpsertWithWhereUniqueWithoutSecondPlaceInput[] No
createMany DoublesGroupCreateManySecondPlaceInputEnvelope No
set DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
disconnect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
delete DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
connect DoublesGroupWhereUniqueInput | DoublesGroupWhereUniqueInput[] No
update DoublesGroupUpdateWithWhereUniqueWithoutSecondPlaceInput | DoublesGroupUpdateWithWhereUniqueWithoutSecondPlaceInput[] No
updateMany DoublesGroupUpdateManyWithWhereWithoutSecondPlaceInput | DoublesGroupUpdateManyWithWhereWithoutSecondPlaceInput[] No
deleteMany DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No





EventUpdateManyWithoutPlacesNestedInput

Name Type Nullable
create EventCreateWithoutPlacesInput | EventCreateWithoutPlacesInput[] | EventUncheckedCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput[] No
connectOrCreate EventCreateOrConnectWithoutPlacesInput | EventCreateOrConnectWithoutPlacesInput[] No
upsert EventUpsertWithWhereUniqueWithoutPlacesInput | EventUpsertWithWhereUniqueWithoutPlacesInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutPlacesInput | EventUpdateWithWhereUniqueWithoutPlacesInput[] No
updateMany EventUpdateManyWithWhereWithoutPlacesInput | EventUpdateManyWithWhereWithoutPlacesInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

CourtUpdateManyWithoutPlaceNestedInput

Name Type Nullable
create CourtCreateWithoutPlaceInput | CourtCreateWithoutPlaceInput[] | CourtUncheckedCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput[] No
connectOrCreate CourtCreateOrConnectWithoutPlaceInput | CourtCreateOrConnectWithoutPlaceInput[] No
upsert CourtUpsertWithWhereUniqueWithoutPlaceInput | CourtUpsertWithWhereUniqueWithoutPlaceInput[] No
createMany CourtCreateManyPlaceInputEnvelope No
set CourtWhereUniqueInput | CourtWhereUniqueInput[] No
disconnect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
delete CourtWhereUniqueInput | CourtWhereUniqueInput[] No
connect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
update CourtUpdateWithWhereUniqueWithoutPlaceInput | CourtUpdateWithWhereUniqueWithoutPlaceInput[] No
updateMany CourtUpdateManyWithWhereWithoutPlaceInput | CourtUpdateManyWithWhereWithoutPlaceInput[] No
deleteMany CourtScalarWhereInput | CourtScalarWhereInput[] No

EventUncheckedUpdateManyWithoutPlacesNestedInput

Name Type Nullable
create EventCreateWithoutPlacesInput | EventCreateWithoutPlacesInput[] | EventUncheckedCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput[] No
connectOrCreate EventCreateOrConnectWithoutPlacesInput | EventCreateOrConnectWithoutPlacesInput[] No
upsert EventUpsertWithWhereUniqueWithoutPlacesInput | EventUpsertWithWhereUniqueWithoutPlacesInput[] No
set EventWhereUniqueInput | EventWhereUniqueInput[] No
disconnect EventWhereUniqueInput | EventWhereUniqueInput[] No
delete EventWhereUniqueInput | EventWhereUniqueInput[] No
connect EventWhereUniqueInput | EventWhereUniqueInput[] No
update EventUpdateWithWhereUniqueWithoutPlacesInput | EventUpdateWithWhereUniqueWithoutPlacesInput[] No
updateMany EventUpdateManyWithWhereWithoutPlacesInput | EventUpdateManyWithWhereWithoutPlacesInput[] No
deleteMany EventScalarWhereInput | EventScalarWhereInput[] No

CourtUncheckedUpdateManyWithoutPlaceNestedInput

Name Type Nullable
create CourtCreateWithoutPlaceInput | CourtCreateWithoutPlaceInput[] | CourtUncheckedCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput[] No
connectOrCreate CourtCreateOrConnectWithoutPlaceInput | CourtCreateOrConnectWithoutPlaceInput[] No
upsert CourtUpsertWithWhereUniqueWithoutPlaceInput | CourtUpsertWithWhereUniqueWithoutPlaceInput[] No
createMany CourtCreateManyPlaceInputEnvelope No
set CourtWhereUniqueInput | CourtWhereUniqueInput[] No
disconnect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
delete CourtWhereUniqueInput | CourtWhereUniqueInput[] No
connect CourtWhereUniqueInput | CourtWhereUniqueInput[] No
update CourtUpdateWithWhereUniqueWithoutPlaceInput | CourtUpdateWithWhereUniqueWithoutPlaceInput[] No
updateMany CourtUpdateManyWithWhereWithoutPlaceInput | CourtUpdateManyWithWhereWithoutPlaceInput[] No
deleteMany CourtScalarWhereInput | CourtScalarWhereInput[] No

NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes



NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes



NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No



NestedEnumCatTypeFilter

Name Type Nullable
equals CatType | EnumCatTypeFieldRefInput No
in CatType[] | ListEnumCatTypeFieldRefInput No
notIn CatType[] | ListEnumCatTypeFieldRefInput No
not CatType | NestedEnumCatTypeFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No




NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedEnumSetTypeFilter

Name Type Nullable
equals SetType | EnumSetTypeFieldRefInput No
in SetType[] | ListEnumSetTypeFieldRefInput No
notIn SetType[] | ListEnumSetTypeFieldRefInput No
not SetType | NestedEnumSetTypeFilter No


NestedEnumRoleFilter

Name Type Nullable
equals Role | EnumRoleFieldRefInput No
in Role[] | ListEnumRoleFieldRefInput No
notIn Role[] | ListEnumRoleFieldRefInput No
not Role | NestedEnumRoleFilter No

NestedEnumRoleWithAggregatesFilter

Name Type Nullable
equals Role | EnumRoleFieldRefInput No
in Role[] | ListEnumRoleFieldRefInput No
notIn Role[] | ListEnumRoleFieldRefInput No
not Role | NestedEnumRoleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumRoleFilter No
_max NestedEnumRoleFilter No



NestedEnumPlayerPositionNullableFilter

Name Type Nullable
equals PlayerPosition | EnumPlayerPositionFieldRefInput | Null Yes
in PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null Yes
notIn PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null Yes
not PlayerPosition | NestedEnumPlayerPositionNullableFilter | Null Yes




CategoryCreateOrConnectWithoutEventsInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutEventsInput | CategoryUncheckedCreateWithoutEventsInput No

PlayerCreateWithoutEventsInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
category CategoryCreateNestedOneWithoutPlayersInput No
matches MatchCreateNestedManyWithoutPlayersInput No
doubles DoubleCreateNestedManyWithoutPlayersInput No
user UserCreateNestedOneWithoutPlayerInput No
invites InviteCreateNestedManyWithoutPlayersInput No

PlayerUncheckedCreateWithoutEventsInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
categoryId String No
position PlayerPosition | Null Yes
matches MatchUncheckedCreateNestedManyWithoutPlayersInput No
doubles DoubleUncheckedCreateNestedManyWithoutPlayersInput No
user UserUncheckedCreateNestedOneWithoutPlayerInput No
invites InviteUncheckedCreateNestedManyWithoutPlayersInput No

PlayerCreateOrConnectWithoutEventsInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput No


MatchUncheckedCreateWithoutEventInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutEventInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput No

MatchCreateManyEventInputEnvelope

Name Type Nullable
data MatchCreateManyEventInput | MatchCreateManyEventInput[] No
skipDuplicates Boolean No

PlaceCreateWithoutEventsInput

Name Type Nullable
id String No
name String | Null Yes
address String | Null Yes
courts CourtCreateNestedManyWithoutPlaceInput No

PlaceUncheckedCreateWithoutEventsInput

Name Type Nullable
id String No
name String | Null Yes
address String | Null Yes
courts CourtUncheckedCreateNestedManyWithoutPlaceInput No

PlaceCreateOrConnectWithoutEventsInput

Name Type Nullable
where PlaceWhereUniqueInput No
create PlaceCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput No

EventRequestCreateWithoutEventInput

Name Type Nullable
status RequestStatus No
double DoubleCreateNestedOneWithoutEventRequestsInput No
category CategoryCreateNestedOneWithoutEventRequestsInput No

EventRequestUncheckedCreateWithoutEventInput

Name Type Nullable
doubleId String No
categoryId String No
status RequestStatus No

EventRequestCreateOrConnectWithoutEventInput

Name Type Nullable
where EventRequestWhereUniqueInput No
create EventRequestCreateWithoutEventInput | EventRequestUncheckedCreateWithoutEventInput No

EventRequestCreateManyEventInputEnvelope

Name Type Nullable
data EventRequestCreateManyEventInput | EventRequestCreateManyEventInput[] No
skipDuplicates Boolean No


EventDoubleUncheckedCreateWithoutEventInput

Name Type Nullable
doubleId String No
categoryId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes

EventDoubleCreateOrConnectWithoutEventInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
create EventDoubleCreateWithoutEventInput | EventDoubleUncheckedCreateWithoutEventInput No

EventDoubleCreateManyEventInputEnvelope

Name Type Nullable
data EventDoubleCreateManyEventInput | EventDoubleCreateManyEventInput[] No
skipDuplicates Boolean No

GameCreateWithoutEventsInput

Name Type Nullable
id String No
set SetCreateNestedOneWithoutGamesInput No
doubles DoubleCreateNestedManyWithoutGamesInput No
winner DoubleCreateNestedOneWithoutGamesWinsInput No

GameUncheckedCreateWithoutEventsInput

Name Type Nullable
id String No
setId String No
winnerId String | Null Yes
doubles DoubleUncheckedCreateNestedManyWithoutGamesInput No

GameCreateOrConnectWithoutEventsInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput No

SetCreateWithoutEventsInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
isFinished Boolean No
doubles DoubleCreateNestedManyWithoutSetsInput No
winner DoubleCreateNestedOneWithoutSetsWinsInput No
match MatchCreateNestedOneWithoutSetsInput No
games GameCreateNestedManyWithoutSetInput No

SetUncheckedCreateWithoutEventsInput

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String | Null Yes
result String | Null Yes
matchId String No
isFinished Boolean No
doubles DoubleUncheckedCreateNestedManyWithoutSetsInput No
games GameUncheckedCreateNestedManyWithoutSetInput No

SetCreateOrConnectWithoutEventsInput

Name Type Nullable
where SetWhereUniqueInput No
create SetCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput No

MatchDateCreateWithoutEventInput

Name Type Nullable
id String No
start DateTime No
finish DateTime No
match MatchCreateNestedOneWithoutMatchDateInput No
court CourtCreateNestedOneWithoutMatchDatesInput No
atRest EventDoubleCreateNestedManyWithoutAtRestInput No

MatchDateUncheckedCreateWithoutEventInput

Name Type Nullable
id String No
matchId String | Null Yes
start DateTime No
finish DateTime No
courtId String No
atRest EventDoubleUncheckedCreateNestedManyWithoutAtRestInput No

MatchDateCreateOrConnectWithoutEventInput

Name Type Nullable
where MatchDateWhereUniqueInput No
create MatchDateCreateWithoutEventInput | MatchDateUncheckedCreateWithoutEventInput No

MatchDateCreateManyEventInputEnvelope

Name Type Nullable
data MatchDateCreateManyEventInput | MatchDateCreateManyEventInput[] No
skipDuplicates Boolean No

CourtCreateWithoutEventsInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
matches MatchCreateNestedManyWithoutCourtInput No
place PlaceCreateNestedOneWithoutCourtsInput No
matchDates MatchDateCreateNestedManyWithoutCourtInput No

CourtUncheckedCreateWithoutEventsInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
placeId String No
matches MatchUncheckedCreateNestedManyWithoutCourtInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutCourtInput No

CourtCreateOrConnectWithoutEventsInput

Name Type Nullable
where CourtWhereUniqueInput No
create CourtCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput No

InviteCreateWithoutEventInput

Name Type Nullable
id String No
inviteType InviteType No
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerCreateNestedManyWithoutInvitesInput No
double DoubleCreateNestedOneWithoutInvitesInput No
match MatchCreateNestedOneWithoutInviteInput No

InviteUncheckedCreateWithoutEventInput

Name Type Nullable
id String No
inviteType InviteType No
doublesId String | Null Yes
matchId String | Null Yes
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerUncheckedCreateNestedManyWithoutInvitesInput No

InviteCreateOrConnectWithoutEventInput

Name Type Nullable
where InviteWhereUniqueInput No
create InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput No

CategoryGroupCreateWithoutEventInput

Name Type Nullable
id String No
groupsStageFinished Boolean No
category CategoryCreateNestedOneWithoutCategoryGroupInput No
groups DoublesGroupCreateNestedManyWithoutCategoryGroupInput No
finalMatches EventMatchCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupUncheckedCreateWithoutEventInput

Name Type Nullable
id String No
categoryId String No
groupsStageFinished Boolean No
groups DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput No
finalMatches EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupCreateOrConnectWithoutEventInput

Name Type Nullable
where CategoryGroupWhereUniqueInput No
create CategoryGroupCreateWithoutEventInput | CategoryGroupUncheckedCreateWithoutEventInput No

CategoryGroupCreateManyEventInputEnvelope

Name Type Nullable
data CategoryGroupCreateManyEventInput | CategoryGroupCreateManyEventInput[] No
skipDuplicates Boolean No

EventMatchCreateWithoutEventInput

Name Type Nullable
number Int No
type EventMatchType No
match MatchCreateNestedOneWithoutEventMatchInput No
matchesWinnersRef MatchCreateNestedManyWithoutWinnerRefInput No
categoryGroup CategoryGroupCreateNestedOneWithoutFinalMatchesInput No
doublesGroup DoublesGroupCreateNestedOneWithoutGroupMatchesInput No

EventMatchUncheckedCreateWithoutEventInput

Name Type Nullable
number Int No
type EventMatchType No
matchId String No
categoryGroupId String | Null Yes
doublesGroupId String | Null Yes
matchesWinnersRef MatchUncheckedCreateNestedManyWithoutWinnerRefInput No

EventMatchCreateOrConnectWithoutEventInput

Name Type Nullable
where EventMatchWhereUniqueInput No
create EventMatchCreateWithoutEventInput | EventMatchUncheckedCreateWithoutEventInput No

EventMatchCreateManyEventInputEnvelope

Name Type Nullable
data EventMatchCreateManyEventInput | EventMatchCreateManyEventInput[] No
skipDuplicates Boolean No


CategoryUpdateWithWhereUniqueWithoutEventsInput

Name Type Nullable
where CategoryWhereUniqueInput No
data CategoryUpdateWithoutEventsInput | CategoryUncheckedUpdateWithoutEventsInput No

CategoryUpdateManyWithWhereWithoutEventsInput

Name Type Nullable
where CategoryScalarWhereInput No
data CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutEventsInput No

CategoryScalarWhereInput

Name Type Nullable
AND CategoryScalarWhereInput | CategoryScalarWhereInput[] No
OR CategoryScalarWhereInput[] No
NOT CategoryScalarWhereInput | CategoryScalarWhereInput[] No
id StringFilter | String No
level IntFilter | Int No
type EnumCatTypeFilter | CatType No


PlayerUpdateWithWhereUniqueWithoutEventsInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutEventsInput | PlayerUncheckedUpdateWithoutEventsInput No

PlayerUpdateManyWithWhereWithoutEventsInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutEventsInput No

PlayerScalarWhereInput

Name Type Nullable
AND PlayerScalarWhereInput | PlayerScalarWhereInput[] No
OR PlayerScalarWhereInput[] No
NOT PlayerScalarWhereInput | PlayerScalarWhereInput[] No
id StringFilter | String No
firstName StringNullableFilter | String | Null Yes
lastName StringNullableFilter | String | Null Yes
categoryId StringFilter | String No
position EnumPlayerPositionNullableFilter | PlayerPosition | Null Yes

MatchUpsertWithWhereUniqueWithoutEventInput

Name Type Nullable
where MatchWhereUniqueInput No
update MatchUpdateWithoutEventInput | MatchUncheckedUpdateWithoutEventInput No
create MatchCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput No

MatchUpdateWithWhereUniqueWithoutEventInput

Name Type Nullable
where MatchWhereUniqueInput No
data MatchUpdateWithoutEventInput | MatchUncheckedUpdateWithoutEventInput No

MatchUpdateManyWithWhereWithoutEventInput

Name Type Nullable
where MatchScalarWhereInput No
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutEventInput No

MatchScalarWhereInput

Name Type Nullable
AND MatchScalarWhereInput | MatchScalarWhereInput[] No
OR MatchScalarWhereInput[] No
NOT MatchScalarWhereInput | MatchScalarWhereInput[] No
id StringFilter | String No
isFinished BoolFilter | Boolean No
categoryId StringNullableFilter | String | Null Yes
winnerDoublesId StringNullableFilter | String | Null Yes
eventId StringNullableFilter | String | Null Yes
type EnumMatchTypeFilter | MatchType No
courtId StringNullableFilter | String | Null Yes
winnerRefId StringNullableFilter | String | Null Yes


PlaceUpdateWithWhereUniqueWithoutEventsInput

Name Type Nullable
where PlaceWhereUniqueInput No
data PlaceUpdateWithoutEventsInput | PlaceUncheckedUpdateWithoutEventsInput No

PlaceUpdateManyWithWhereWithoutEventsInput

Name Type Nullable
where PlaceScalarWhereInput No
data PlaceUpdateManyMutationInput | PlaceUncheckedUpdateManyWithoutEventsInput No

PlaceScalarWhereInput

Name Type Nullable
AND PlaceScalarWhereInput | PlaceScalarWhereInput[] No
OR PlaceScalarWhereInput[] No
NOT PlaceScalarWhereInput | PlaceScalarWhereInput[] No
id StringFilter | String No
name StringNullableFilter | String | Null Yes
address StringNullableFilter | String | Null Yes


EventRequestUpdateWithWhereUniqueWithoutEventInput

Name Type Nullable
where EventRequestWhereUniqueInput No
data EventRequestUpdateWithoutEventInput | EventRequestUncheckedUpdateWithoutEventInput No

EventRequestUpdateManyWithWhereWithoutEventInput

Name Type Nullable
where EventRequestScalarWhereInput No
data EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyWithoutEventInput No

EventRequestScalarWhereInput

Name Type Nullable
AND EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No
OR EventRequestScalarWhereInput[] No
NOT EventRequestScalarWhereInput | EventRequestScalarWhereInput[] No
eventId StringFilter | String No
doubleId StringFilter | String No
categoryId StringFilter | String No
status EnumRequestStatusFilter | RequestStatus No


EventDoubleUpdateWithWhereUniqueWithoutEventInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
data EventDoubleUpdateWithoutEventInput | EventDoubleUncheckedUpdateWithoutEventInput No

EventDoubleUpdateManyWithWhereWithoutEventInput

Name Type Nullable
where EventDoubleScalarWhereInput No
data EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutEventInput No

EventDoubleScalarWhereInput

Name Type Nullable
AND EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No
OR EventDoubleScalarWhereInput[] No
NOT EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] No
eventId StringFilter | String No
doubleId StringFilter | String No
categoryId StringFilter | String No
atRestId StringNullableFilter | String | Null Yes
doublesGroupId StringNullableFilter | String | Null Yes

GameUpsertWithWhereUniqueWithoutEventsInput

Name Type Nullable
where GameWhereUniqueInput No
update GameUpdateWithoutEventsInput | GameUncheckedUpdateWithoutEventsInput No
create GameCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput No

GameUpdateWithWhereUniqueWithoutEventsInput

Name Type Nullable
where GameWhereUniqueInput No
data GameUpdateWithoutEventsInput | GameUncheckedUpdateWithoutEventsInput No

GameUpdateManyWithWhereWithoutEventsInput

Name Type Nullable
where GameScalarWhereInput No
data GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutEventsInput No

GameScalarWhereInput

Name Type Nullable
AND GameScalarWhereInput | GameScalarWhereInput[] No
OR GameScalarWhereInput[] No
NOT GameScalarWhereInput | GameScalarWhereInput[] No
id StringFilter | String No
setId StringFilter | String No
winnerId StringNullableFilter | String | Null Yes

SetUpsertWithWhereUniqueWithoutEventsInput

Name Type Nullable
where SetWhereUniqueInput No
update SetUpdateWithoutEventsInput | SetUncheckedUpdateWithoutEventsInput No
create SetCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput No

SetUpdateWithWhereUniqueWithoutEventsInput

Name Type Nullable
where SetWhereUniqueInput No
data SetUpdateWithoutEventsInput | SetUncheckedUpdateWithoutEventsInput No

SetUpdateManyWithWhereWithoutEventsInput

Name Type Nullable
where SetScalarWhereInput No
data SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutEventsInput No

SetScalarWhereInput

Name Type Nullable
AND SetScalarWhereInput | SetScalarWhereInput[] No
OR SetScalarWhereInput[] No
NOT SetScalarWhereInput | SetScalarWhereInput[] No
id StringFilter | String No
type EnumSetTypeFilter | SetType No
number IntFilter | Int No
setWinnerId StringNullableFilter | String | Null Yes
result StringNullableFilter | String | Null Yes
matchId StringFilter | String No
isFinished BoolFilter | Boolean No


MatchDateUpdateWithWhereUniqueWithoutEventInput

Name Type Nullable
where MatchDateWhereUniqueInput No
data MatchDateUpdateWithoutEventInput | MatchDateUncheckedUpdateWithoutEventInput No

MatchDateUpdateManyWithWhereWithoutEventInput

Name Type Nullable
where MatchDateScalarWhereInput No
data MatchDateUpdateManyMutationInput | MatchDateUncheckedUpdateManyWithoutEventInput No

MatchDateScalarWhereInput

Name Type Nullable
AND MatchDateScalarWhereInput | MatchDateScalarWhereInput[] No
OR MatchDateScalarWhereInput[] No
NOT MatchDateScalarWhereInput | MatchDateScalarWhereInput[] No
id StringFilter | String No
eventId StringFilter | String No
matchId StringNullableFilter | String | Null Yes
start DateTimeFilter | DateTime No
finish DateTimeFilter | DateTime No
courtId StringFilter | String No


CourtUpdateWithWhereUniqueWithoutEventsInput

Name Type Nullable
where CourtWhereUniqueInput No
data CourtUpdateWithoutEventsInput | CourtUncheckedUpdateWithoutEventsInput No

CourtUpdateManyWithWhereWithoutEventsInput

Name Type Nullable
where CourtScalarWhereInput No
data CourtUpdateManyMutationInput | CourtUncheckedUpdateManyWithoutEventsInput No

CourtScalarWhereInput

Name Type Nullable
AND CourtScalarWhereInput | CourtScalarWhereInput[] No
OR CourtScalarWhereInput[] No
NOT CourtScalarWhereInput | CourtScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
isAvailable BoolFilter | Boolean No
placeId StringFilter | String No


InviteUpdateToOneWithWhereWithoutEventInput

Name Type Nullable
where InviteWhereInput No
data InviteUpdateWithoutEventInput | InviteUncheckedUpdateWithoutEventInput No


InviteUncheckedUpdateWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
doublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutInvitesNestedInput No


CategoryGroupUpdateWithWhereUniqueWithoutEventInput

Name Type Nullable
where CategoryGroupWhereUniqueInput No
data CategoryGroupUpdateWithoutEventInput | CategoryGroupUncheckedUpdateWithoutEventInput No

CategoryGroupUpdateManyWithWhereWithoutEventInput

Name Type Nullable
where CategoryGroupScalarWhereInput No
data CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyWithoutEventInput No

CategoryGroupScalarWhereInput

Name Type Nullable
AND CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] No
OR CategoryGroupScalarWhereInput[] No
NOT CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] No
id StringFilter | String No
categoryId StringFilter | String No
eventId StringNullableFilter | String | Null Yes
groupsStageFinished BoolFilter | Boolean No


EventMatchUpdateWithWhereUniqueWithoutEventInput

Name Type Nullable
where EventMatchWhereUniqueInput No
data EventMatchUpdateWithoutEventInput | EventMatchUncheckedUpdateWithoutEventInput No

EventMatchUpdateManyWithWhereWithoutEventInput

Name Type Nullable
where EventMatchScalarWhereInput No
data EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyWithoutEventInput No

EventMatchScalarWhereInput

Name Type Nullable
AND EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No
OR EventMatchScalarWhereInput[] No
NOT EventMatchScalarWhereInput | EventMatchScalarWhereInput[] No
number IntFilter | Int No
type EnumEventMatchTypeFilter | EventMatchType No
eventId StringFilter | String No
matchId StringFilter | String No
categoryGroupId StringNullableFilter | String | Null Yes
doublesGroupId StringNullableFilter | String | Null Yes



CategoryCreateOrConnectWithoutCategoryGroupInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutCategoryGroupInput | CategoryUncheckedCreateWithoutCategoryGroupInput No

DoublesGroupCreateWithoutCategoryGroupInput

Name Type Nullable
id String No
key String No
eventDoubles EventDoubleCreateNestedManyWithoutDoublesGroupInput No
firstPlace DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput No
secondPlace DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput No
groupMatches EventMatchCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupUncheckedCreateWithoutCategoryGroupInput

Name Type Nullable
id String No
key String No
firstPlaceDoublesId String | Null Yes
secondPlaceDoublesId String | Null Yes
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput No
groupMatches EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupCreateOrConnectWithoutCategoryGroupInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
create DoublesGroupCreateWithoutCategoryGroupInput | DoublesGroupUncheckedCreateWithoutCategoryGroupInput No

DoublesGroupCreateManyCategoryGroupInputEnvelope

Name Type Nullable
data DoublesGroupCreateManyCategoryGroupInput | DoublesGroupCreateManyCategoryGroupInput[] No
skipDuplicates Boolean No

EventCreateWithoutCategoriesGroupsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutCategoriesGroupsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutCategoriesGroupsInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutCategoriesGroupsInput | EventUncheckedCreateWithoutCategoriesGroupsInput No

EventMatchCreateWithoutCategoryGroupInput

Name Type Nullable
number Int No
type EventMatchType No
event EventCreateNestedOneWithoutEventMatchesInput No
match MatchCreateNestedOneWithoutEventMatchInput No
matchesWinnersRef MatchCreateNestedManyWithoutWinnerRefInput No
doublesGroup DoublesGroupCreateNestedOneWithoutGroupMatchesInput No

EventMatchUncheckedCreateWithoutCategoryGroupInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
doublesGroupId String | Null Yes
matchesWinnersRef MatchUncheckedCreateNestedManyWithoutWinnerRefInput No

EventMatchCreateOrConnectWithoutCategoryGroupInput

Name Type Nullable
where EventMatchWhereUniqueInput No
create EventMatchCreateWithoutCategoryGroupInput | EventMatchUncheckedCreateWithoutCategoryGroupInput No

EventMatchCreateManyCategoryGroupInputEnvelope

Name Type Nullable
data EventMatchCreateManyCategoryGroupInput | EventMatchCreateManyCategoryGroupInput[] No
skipDuplicates Boolean No


CategoryUpdateToOneWithWhereWithoutCategoryGroupInput

Name Type Nullable
where CategoryWhereInput No
data CategoryUpdateWithoutCategoryGroupInput | CategoryUncheckedUpdateWithoutCategoryGroupInput No




DoublesGroupUpdateWithWhereUniqueWithoutCategoryGroupInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
data DoublesGroupUpdateWithoutCategoryGroupInput | DoublesGroupUncheckedUpdateWithoutCategoryGroupInput No

DoublesGroupUpdateManyWithWhereWithoutCategoryGroupInput

Name Type Nullable
where DoublesGroupScalarWhereInput No
data DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupInput No

DoublesGroupScalarWhereInput

Name Type Nullable
AND DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No
OR DoublesGroupScalarWhereInput[] No
NOT DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] No
id StringFilter | String No
key StringFilter | String No
categoryGroupId StringNullableFilter | String | Null Yes
firstPlaceDoublesId StringNullableFilter | String | Null Yes
secondPlaceDoublesId StringNullableFilter | String | Null Yes


EventUpdateToOneWithWhereWithoutCategoriesGroupsInput

Name Type Nullable
where EventWhereInput No
data EventUpdateWithoutCategoriesGroupsInput | EventUncheckedUpdateWithoutCategoriesGroupsInput No

EventUpdateWithoutCategoriesGroupsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutCategoriesGroupsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No


EventMatchUpdateWithWhereUniqueWithoutCategoryGroupInput

Name Type Nullable
where EventMatchWhereUniqueInput No
data EventMatchUpdateWithoutCategoryGroupInput | EventMatchUncheckedUpdateWithoutCategoryGroupInput No

EventMatchUpdateManyWithWhereWithoutCategoryGroupInput

Name Type Nullable
where EventMatchScalarWhereInput No
data EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyWithoutCategoryGroupInput No


EventDoubleUncheckedCreateWithoutDoublesGroupInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
atRestId String | Null Yes

EventDoubleCreateOrConnectWithoutDoublesGroupInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
create EventDoubleCreateWithoutDoublesGroupInput | EventDoubleUncheckedCreateWithoutDoublesGroupInput No

EventDoubleCreateManyDoublesGroupInputEnvelope

Name Type Nullable
data EventDoubleCreateManyDoublesGroupInput | EventDoubleCreateManyDoublesGroupInput[] No
skipDuplicates Boolean No

CategoryGroupCreateWithoutGroupsInput

Name Type Nullable
id String No
groupsStageFinished Boolean No
category CategoryCreateNestedOneWithoutCategoryGroupInput No
event EventCreateNestedOneWithoutCategoriesGroupsInput No
finalMatches EventMatchCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupUncheckedCreateWithoutGroupsInput

Name Type Nullable
id String No
categoryId String No
eventId String | Null Yes
groupsStageFinished Boolean No
finalMatches EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupCreateOrConnectWithoutGroupsInput

Name Type Nullable
where CategoryGroupWhereUniqueInput No
create CategoryGroupCreateWithoutGroupsInput | CategoryGroupUncheckedCreateWithoutGroupsInput No


DoubleUncheckedCreateWithoutFirstPlaceInGroupsInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutFirstPlaceInGroupsInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutFirstPlaceInGroupsInput | DoubleUncheckedCreateWithoutFirstPlaceInGroupsInput No


DoubleUncheckedCreateWithoutSecondPlaceInGroupsInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No

DoubleCreateOrConnectWithoutSecondPlaceInGroupsInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutSecondPlaceInGroupsInput | DoubleUncheckedCreateWithoutSecondPlaceInGroupsInput No

EventMatchCreateWithoutDoublesGroupInput

Name Type Nullable
number Int No
type EventMatchType No
event EventCreateNestedOneWithoutEventMatchesInput No
match MatchCreateNestedOneWithoutEventMatchInput No
matchesWinnersRef MatchCreateNestedManyWithoutWinnerRefInput No
categoryGroup CategoryGroupCreateNestedOneWithoutFinalMatchesInput No

EventMatchUncheckedCreateWithoutDoublesGroupInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
categoryGroupId String | Null Yes
matchesWinnersRef MatchUncheckedCreateNestedManyWithoutWinnerRefInput No

EventMatchCreateOrConnectWithoutDoublesGroupInput

Name Type Nullable
where EventMatchWhereUniqueInput No
create EventMatchCreateWithoutDoublesGroupInput | EventMatchUncheckedCreateWithoutDoublesGroupInput No

EventMatchCreateManyDoublesGroupInputEnvelope

Name Type Nullable
data EventMatchCreateManyDoublesGroupInput | EventMatchCreateManyDoublesGroupInput[] No
skipDuplicates Boolean No


EventDoubleUpdateWithWhereUniqueWithoutDoublesGroupInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
data EventDoubleUpdateWithoutDoublesGroupInput | EventDoubleUncheckedUpdateWithoutDoublesGroupInput No

EventDoubleUpdateManyWithWhereWithoutDoublesGroupInput

Name Type Nullable
where EventDoubleScalarWhereInput No
data EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutDoublesGroupInput No


CategoryGroupUpdateToOneWithWhereWithoutGroupsInput

Name Type Nullable
where CategoryGroupWhereInput No
data CategoryGroupUpdateWithoutGroupsInput | CategoryGroupUncheckedUpdateWithoutGroupsInput No

CategoryGroupUpdateWithoutGroupsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
category CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput No
event EventUpdateOneWithoutCategoriesGroupsNestedInput No
finalMatches EventMatchUpdateManyWithoutCategoryGroupNestedInput No

CategoryGroupUncheckedUpdateWithoutGroupsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
finalMatches EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput No


DoubleUpdateToOneWithWhereWithoutFirstPlaceInGroupsInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutFirstPlaceInGroupsInput | DoubleUncheckedUpdateWithoutFirstPlaceInGroupsInput No


DoubleUncheckedUpdateWithoutFirstPlaceInGroupsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No


DoubleUpdateToOneWithWhereWithoutSecondPlaceInGroupsInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutSecondPlaceInGroupsInput | DoubleUncheckedUpdateWithoutSecondPlaceInGroupsInput No


DoubleUncheckedUpdateWithoutSecondPlaceInGroupsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No


EventMatchUpdateWithWhereUniqueWithoutDoublesGroupInput

Name Type Nullable
where EventMatchWhereUniqueInput No
data EventMatchUpdateWithoutDoublesGroupInput | EventMatchUncheckedUpdateWithoutDoublesGroupInput No

EventMatchUpdateManyWithWhereWithoutDoublesGroupInput

Name Type Nullable
where EventMatchScalarWhereInput No
data EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyWithoutDoublesGroupInput No

EventCreateWithoutEventRequestsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutEventRequestsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutEventRequestsInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutEventRequestsInput | EventUncheckedCreateWithoutEventRequestsInput No


DoubleUncheckedCreateWithoutEventRequestsInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutEventRequestsInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutEventRequestsInput | DoubleUncheckedCreateWithoutEventRequestsInput No



CategoryCreateOrConnectWithoutEventRequestsInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutEventRequestsInput | CategoryUncheckedCreateWithoutEventRequestsInput No


EventUpdateToOneWithWhereWithoutEventRequestsInput

Name Type Nullable
where EventWhereInput No
data EventUpdateWithoutEventRequestsInput | EventUncheckedUpdateWithoutEventRequestsInput No

EventUpdateWithoutEventRequestsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutEventRequestsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No


DoubleUpdateToOneWithWhereWithoutEventRequestsInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutEventRequestsInput | DoubleUncheckedUpdateWithoutEventRequestsInput No


DoubleUncheckedUpdateWithoutEventRequestsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No


CategoryUpdateToOneWithWhereWithoutEventRequestsInput

Name Type Nullable
where CategoryWhereInput No
data CategoryUpdateWithoutEventRequestsInput | CategoryUncheckedUpdateWithoutEventRequestsInput No



EventCreateWithoutCourtsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutCourtsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutCourtsInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput No


MatchUncheckedCreateWithoutCourtInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutCourtInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput No

MatchCreateManyCourtInputEnvelope

Name Type Nullable
data MatchCreateManyCourtInput | MatchCreateManyCourtInput[] No
skipDuplicates Boolean No

PlaceCreateWithoutCourtsInput

Name Type Nullable
id String No
name String | Null Yes
address String | Null Yes
events EventCreateNestedManyWithoutPlacesInput No

PlaceUncheckedCreateWithoutCourtsInput

Name Type Nullable
id String No
name String | Null Yes
address String | Null Yes
events EventUncheckedCreateNestedManyWithoutPlacesInput No

PlaceCreateOrConnectWithoutCourtsInput

Name Type Nullable
where PlaceWhereUniqueInput No
create PlaceCreateWithoutCourtsInput | PlaceUncheckedCreateWithoutCourtsInput No

MatchDateCreateWithoutCourtInput

Name Type Nullable
id String No
start DateTime No
finish DateTime No
event EventCreateNestedOneWithoutMatchDatesInput No
match MatchCreateNestedOneWithoutMatchDateInput No
atRest EventDoubleCreateNestedManyWithoutAtRestInput No

MatchDateUncheckedCreateWithoutCourtInput

Name Type Nullable
id String No
eventId String No
matchId String | Null Yes
start DateTime No
finish DateTime No
atRest EventDoubleUncheckedCreateNestedManyWithoutAtRestInput No

MatchDateCreateOrConnectWithoutCourtInput

Name Type Nullable
where MatchDateWhereUniqueInput No
create MatchDateCreateWithoutCourtInput | MatchDateUncheckedCreateWithoutCourtInput No

MatchDateCreateManyCourtInputEnvelope

Name Type Nullable
data MatchDateCreateManyCourtInput | MatchDateCreateManyCourtInput[] No
skipDuplicates Boolean No


EventUpdateWithWhereUniqueWithoutCourtsInput

Name Type Nullable
where EventWhereUniqueInput No
data EventUpdateWithoutCourtsInput | EventUncheckedUpdateWithoutCourtsInput No

EventUpdateManyWithWhereWithoutCourtsInput

Name Type Nullable
where EventScalarWhereInput No
data EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutCourtsInput No

EventScalarWhereInput

Name Type Nullable
AND EventScalarWhereInput | EventScalarWhereInput[] No
OR EventScalarWhereInput[] No
NOT EventScalarWhereInput | EventScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
isActive BoolFilter | Boolean No
isFinished BoolFilter | Boolean No
startDate DateTimeNullableFilter | DateTime | Null Yes
finishDate DateTimeNullableFilter | DateTime | Null Yes
matchDurationInMinutes IntNullableFilter | Int | Null Yes
timeOfFirstMatch IntNullableFilter | Int | Null Yes
timeOfLastMatch IntNullableFilter | Int | Null Yes
eventType EnumEventTypeFilter | EventType No
matchType EnumMatchTypeFilter | MatchType No
isGroupMatchesFinished BoolFilter | Boolean No

MatchUpsertWithWhereUniqueWithoutCourtInput

Name Type Nullable
where MatchWhereUniqueInput No
update MatchUpdateWithoutCourtInput | MatchUncheckedUpdateWithoutCourtInput No
create MatchCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput No

MatchUpdateWithWhereUniqueWithoutCourtInput

Name Type Nullable
where MatchWhereUniqueInput No
data MatchUpdateWithoutCourtInput | MatchUncheckedUpdateWithoutCourtInput No

MatchUpdateManyWithWhereWithoutCourtInput

Name Type Nullable
where MatchScalarWhereInput No
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutCourtInput No


PlaceUpdateToOneWithWhereWithoutCourtsInput

Name Type Nullable
where PlaceWhereInput No
data PlaceUpdateWithoutCourtsInput | PlaceUncheckedUpdateWithoutCourtsInput No

PlaceUpdateWithoutCourtsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
events EventUpdateManyWithoutPlacesNestedInput No

PlaceUncheckedUpdateWithoutCourtsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
events EventUncheckedUpdateManyWithoutPlacesNestedInput No


MatchDateUpdateWithWhereUniqueWithoutCourtInput

Name Type Nullable
where MatchDateWhereUniqueInput No
data MatchDateUpdateWithoutCourtInput | MatchDateUncheckedUpdateWithoutCourtInput No

MatchDateUpdateManyWithWhereWithoutCourtInput

Name Type Nullable
where MatchDateScalarWhereInput No
data MatchDateUpdateManyMutationInput | MatchDateUncheckedUpdateManyWithoutCourtInput No

EventCreateWithoutEventDoublesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutEventDoublesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutEventDoublesInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutEventDoublesInput | EventUncheckedCreateWithoutEventDoublesInput No


DoubleUncheckedCreateWithoutEventDoubleInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutEventDoubleInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutEventDoubleInput | DoubleUncheckedCreateWithoutEventDoubleInput No



CategoryCreateOrConnectWithoutEventDoublesInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutEventDoublesInput | CategoryUncheckedCreateWithoutEventDoublesInput No

MatchDateCreateWithoutAtRestInput

Name Type Nullable
id String No
start DateTime No
finish DateTime No
event EventCreateNestedOneWithoutMatchDatesInput No
match MatchCreateNestedOneWithoutMatchDateInput No
court CourtCreateNestedOneWithoutMatchDatesInput No

MatchDateUncheckedCreateWithoutAtRestInput

Name Type Nullable
id String No
eventId String No
matchId String | Null Yes
start DateTime No
finish DateTime No
courtId String No

MatchDateCreateOrConnectWithoutAtRestInput

Name Type Nullable
where MatchDateWhereUniqueInput No
create MatchDateCreateWithoutAtRestInput | MatchDateUncheckedCreateWithoutAtRestInput No

DoublesGroupCreateWithoutEventDoublesInput

Name Type Nullable
id String No
key String No
categoryGroup CategoryGroupCreateNestedOneWithoutGroupsInput No
firstPlace DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput No
secondPlace DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput No
groupMatches EventMatchCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupUncheckedCreateWithoutEventDoublesInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
firstPlaceDoublesId String | Null Yes
secondPlaceDoublesId String | Null Yes
groupMatches EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupCreateOrConnectWithoutEventDoublesInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
create DoublesGroupCreateWithoutEventDoublesInput | DoublesGroupUncheckedCreateWithoutEventDoublesInput No


EventUpdateToOneWithWhereWithoutEventDoublesInput

Name Type Nullable
where EventWhereInput No
data EventUpdateWithoutEventDoublesInput | EventUncheckedUpdateWithoutEventDoublesInput No

EventUpdateWithoutEventDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutEventDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No


DoubleUpdateToOneWithWhereWithoutEventDoubleInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutEventDoubleInput | DoubleUncheckedUpdateWithoutEventDoubleInput No


DoubleUncheckedUpdateWithoutEventDoubleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No


CategoryUpdateToOneWithWhereWithoutEventDoublesInput

Name Type Nullable
where CategoryWhereInput No
data CategoryUpdateWithoutEventDoublesInput | CategoryUncheckedUpdateWithoutEventDoublesInput No




MatchDateUpdateToOneWithWhereWithoutAtRestInput

Name Type Nullable
where MatchDateWhereInput No
data MatchDateUpdateWithoutAtRestInput | MatchDateUncheckedUpdateWithoutAtRestInput No


MatchDateUncheckedUpdateWithoutAtRestInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No
courtId String | StringFieldUpdateOperationsInput No


DoublesGroupUpdateToOneWithWhereWithoutEventDoublesInput

Name Type Nullable
where DoublesGroupWhereInput No
data DoublesGroupUpdateWithoutEventDoublesInput | DoublesGroupUncheckedUpdateWithoutEventDoublesInput No


DoublesGroupUncheckedUpdateWithoutEventDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
groupMatches EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput No

PlayerCreateWithoutCategoryInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
matches MatchCreateNestedManyWithoutPlayersInput No
doubles DoubleCreateNestedManyWithoutPlayersInput No
events EventCreateNestedManyWithoutPlayersInput No
user UserCreateNestedOneWithoutPlayerInput No
invites InviteCreateNestedManyWithoutPlayersInput No

PlayerUncheckedCreateWithoutCategoryInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
matches MatchUncheckedCreateNestedManyWithoutPlayersInput No
doubles DoubleUncheckedCreateNestedManyWithoutPlayersInput No
events EventUncheckedCreateNestedManyWithoutPlayersInput No
user UserUncheckedCreateNestedOneWithoutPlayerInput No
invites InviteUncheckedCreateNestedManyWithoutPlayersInput No

PlayerCreateOrConnectWithoutCategoryInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput No

PlayerCreateManyCategoryInputEnvelope

Name Type Nullable
data PlayerCreateManyCategoryInput | PlayerCreateManyCategoryInput[] No
skipDuplicates Boolean No


DoubleUncheckedCreateWithoutCategoryInput

Name Type Nullable
id String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutCategoryInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput No

DoubleCreateManyCategoryInputEnvelope

Name Type Nullable
data DoubleCreateManyCategoryInput | DoubleCreateManyCategoryInput[] No
skipDuplicates Boolean No

EventCreateWithoutCategoriesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutCategoriesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutCategoriesInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutCategoriesInput | EventUncheckedCreateWithoutCategoriesInput No


MatchUncheckedCreateWithoutCategoryInput

Name Type Nullable
id String No
isFinished Boolean No
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutCategoryInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput No

MatchCreateManyCategoryInputEnvelope

Name Type Nullable
data MatchCreateManyCategoryInput | MatchCreateManyCategoryInput[] No
skipDuplicates Boolean No


EventDoubleUncheckedCreateWithoutCategoryInput

Name Type Nullable
eventId String No
doubleId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes

EventDoubleCreateOrConnectWithoutCategoryInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
create EventDoubleCreateWithoutCategoryInput | EventDoubleUncheckedCreateWithoutCategoryInput No

EventDoubleCreateManyCategoryInputEnvelope

Name Type Nullable
data EventDoubleCreateManyCategoryInput | EventDoubleCreateManyCategoryInput[] No
skipDuplicates Boolean No

EventRequestCreateWithoutCategoryInput

Name Type Nullable
status RequestStatus No
event EventCreateNestedOneWithoutEventRequestsInput No
double DoubleCreateNestedOneWithoutEventRequestsInput No

EventRequestUncheckedCreateWithoutCategoryInput

Name Type Nullable
eventId String No
doubleId String No
status RequestStatus No

EventRequestCreateOrConnectWithoutCategoryInput

Name Type Nullable
where EventRequestWhereUniqueInput No
create EventRequestCreateWithoutCategoryInput | EventRequestUncheckedCreateWithoutCategoryInput No

EventRequestCreateManyCategoryInputEnvelope

Name Type Nullable
data EventRequestCreateManyCategoryInput | EventRequestCreateManyCategoryInput[] No
skipDuplicates Boolean No

CategoryGroupCreateWithoutCategoryInput

Name Type Nullable
id String No
groupsStageFinished Boolean No
groups DoublesGroupCreateNestedManyWithoutCategoryGroupInput No
event EventCreateNestedOneWithoutCategoriesGroupsInput No
finalMatches EventMatchCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupUncheckedCreateWithoutCategoryInput

Name Type Nullable
id String No
eventId String | Null Yes
groupsStageFinished Boolean No
groups DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput No
finalMatches EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupCreateOrConnectWithoutCategoryInput

Name Type Nullable
where CategoryGroupWhereUniqueInput No
create CategoryGroupCreateWithoutCategoryInput | CategoryGroupUncheckedCreateWithoutCategoryInput No

CategoryGroupCreateManyCategoryInputEnvelope

Name Type Nullable
data CategoryGroupCreateManyCategoryInput | CategoryGroupCreateManyCategoryInput[] No
skipDuplicates Boolean No


PlayerUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutCategoryInput | PlayerUncheckedUpdateWithoutCategoryInput No

PlayerUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutCategoryInput No


DoubleUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where DoubleWhereUniqueInput No
data DoubleUpdateWithoutCategoryInput | DoubleUncheckedUpdateWithoutCategoryInput No

DoubleUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where DoubleScalarWhereInput No
data DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutCategoryInput No

DoubleScalarWhereInput

Name Type Nullable
AND DoubleScalarWhereInput | DoubleScalarWhereInput[] No
OR DoubleScalarWhereInput[] No
NOT DoubleScalarWhereInput | DoubleScalarWhereInput[] No
id StringFilter | String No
categoryId StringFilter | String No


EventUpdateWithWhereUniqueWithoutCategoriesInput

Name Type Nullable
where EventWhereUniqueInput No
data EventUpdateWithoutCategoriesInput | EventUncheckedUpdateWithoutCategoriesInput No

EventUpdateManyWithWhereWithoutCategoriesInput

Name Type Nullable
where EventScalarWhereInput No
data EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutCategoriesInput No


MatchUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where MatchWhereUniqueInput No
data MatchUpdateWithoutCategoryInput | MatchUncheckedUpdateWithoutCategoryInput No

MatchUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where MatchScalarWhereInput No
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutCategoryInput No


EventDoubleUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
data EventDoubleUpdateWithoutCategoryInput | EventDoubleUncheckedUpdateWithoutCategoryInput No

EventDoubleUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where EventDoubleScalarWhereInput No
data EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutCategoryInput No


EventRequestUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where EventRequestWhereUniqueInput No
data EventRequestUpdateWithoutCategoryInput | EventRequestUncheckedUpdateWithoutCategoryInput No

EventRequestUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where EventRequestScalarWhereInput No
data EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyWithoutCategoryInput No


CategoryGroupUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where CategoryGroupWhereUniqueInput No
data CategoryGroupUpdateWithoutCategoryInput | CategoryGroupUncheckedUpdateWithoutCategoryInput No

CategoryGroupUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where CategoryGroupScalarWhereInput No
data CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyWithoutCategoryInput No

EventCreateWithoutEventMatchesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutEventMatchesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutEventMatchesInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutEventMatchesInput | EventUncheckedCreateWithoutEventMatchesInput No


MatchUncheckedCreateWithoutEventMatchInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutEventMatchInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutEventMatchInput | MatchUncheckedCreateWithoutEventMatchInput No


MatchUncheckedCreateWithoutWinnerRefInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutWinnerRefInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutWinnerRefInput | MatchUncheckedCreateWithoutWinnerRefInput No

MatchCreateManyWinnerRefInputEnvelope

Name Type Nullable
data MatchCreateManyWinnerRefInput | MatchCreateManyWinnerRefInput[] No
skipDuplicates Boolean No

CategoryGroupCreateWithoutFinalMatchesInput

Name Type Nullable
id String No
groupsStageFinished Boolean No
category CategoryCreateNestedOneWithoutCategoryGroupInput No
groups DoublesGroupCreateNestedManyWithoutCategoryGroupInput No
event EventCreateNestedOneWithoutCategoriesGroupsInput No

CategoryGroupUncheckedCreateWithoutFinalMatchesInput

Name Type Nullable
id String No
categoryId String No
eventId String | Null Yes
groupsStageFinished Boolean No
groups DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput No

CategoryGroupCreateOrConnectWithoutFinalMatchesInput

Name Type Nullable
where CategoryGroupWhereUniqueInput No
create CategoryGroupCreateWithoutFinalMatchesInput | CategoryGroupUncheckedCreateWithoutFinalMatchesInput No

DoublesGroupCreateWithoutGroupMatchesInput

Name Type Nullable
id String No
key String No
eventDoubles EventDoubleCreateNestedManyWithoutDoublesGroupInput No
categoryGroup CategoryGroupCreateNestedOneWithoutGroupsInput No
firstPlace DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput No
secondPlace DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput No

DoublesGroupUncheckedCreateWithoutGroupMatchesInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
firstPlaceDoublesId String | Null Yes
secondPlaceDoublesId String | Null Yes
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupCreateOrConnectWithoutGroupMatchesInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
create DoublesGroupCreateWithoutGroupMatchesInput | DoublesGroupUncheckedCreateWithoutGroupMatchesInput No


EventUpdateToOneWithWhereWithoutEventMatchesInput

Name Type Nullable
where EventWhereInput No
data EventUpdateWithoutEventMatchesInput | EventUncheckedUpdateWithoutEventMatchesInput No

EventUpdateWithoutEventMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutEventMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No


MatchUpdateToOneWithWhereWithoutEventMatchInput

Name Type Nullable
where MatchWhereInput No
data MatchUpdateWithoutEventMatchInput | MatchUncheckedUpdateWithoutEventMatchInput No


MatchUncheckedUpdateWithoutEventMatchInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No


MatchUpdateWithWhereUniqueWithoutWinnerRefInput

Name Type Nullable
where MatchWhereUniqueInput No
data MatchUpdateWithoutWinnerRefInput | MatchUncheckedUpdateWithoutWinnerRefInput No

MatchUpdateManyWithWhereWithoutWinnerRefInput

Name Type Nullable
where MatchScalarWhereInput No
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutWinnerRefInput No


CategoryGroupUpdateToOneWithWhereWithoutFinalMatchesInput

Name Type Nullable
where CategoryGroupWhereInput No
data CategoryGroupUpdateWithoutFinalMatchesInput | CategoryGroupUncheckedUpdateWithoutFinalMatchesInput No

CategoryGroupUpdateWithoutFinalMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
category CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput No
groups DoublesGroupUpdateManyWithoutCategoryGroupNestedInput No
event EventUpdateOneWithoutCategoriesGroupsNestedInput No

CategoryGroupUncheckedUpdateWithoutFinalMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
groups DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput No


DoublesGroupUpdateToOneWithWhereWithoutGroupMatchesInput

Name Type Nullable
where DoublesGroupWhereInput No
data DoublesGroupUpdateWithoutGroupMatchesInput | DoublesGroupUncheckedUpdateWithoutGroupMatchesInput No


DoublesGroupUncheckedUpdateWithoutGroupMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventDoubles EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput No

PlayerCreateWithoutMatchesInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
category CategoryCreateNestedOneWithoutPlayersInput No
doubles DoubleCreateNestedManyWithoutPlayersInput No
events EventCreateNestedManyWithoutPlayersInput No
user UserCreateNestedOneWithoutPlayerInput No
invites InviteCreateNestedManyWithoutPlayersInput No

PlayerUncheckedCreateWithoutMatchesInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
categoryId String No
position PlayerPosition | Null Yes
doubles DoubleUncheckedCreateNestedManyWithoutPlayersInput No
events EventUncheckedCreateNestedManyWithoutPlayersInput No
user UserUncheckedCreateNestedOneWithoutPlayerInput No
invites InviteUncheckedCreateNestedManyWithoutPlayersInput No

PlayerCreateOrConnectWithoutMatchesInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutMatchesInput | PlayerUncheckedCreateWithoutMatchesInput No



CategoryCreateOrConnectWithoutMatchesInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutMatchesInput | CategoryUncheckedCreateWithoutMatchesInput No


DoubleUncheckedCreateWithoutMatchesWinsInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutMatchesWinsInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutMatchesWinsInput | DoubleUncheckedCreateWithoutMatchesWinsInput No

SetCreateWithoutMatchInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
isFinished Boolean No
doubles DoubleCreateNestedManyWithoutSetsInput No
winner DoubleCreateNestedOneWithoutSetsWinsInput No
games GameCreateNestedManyWithoutSetInput No
events EventCreateNestedManyWithoutSetsInput No

SetUncheckedCreateWithoutMatchInput

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String | Null Yes
result String | Null Yes
isFinished Boolean No
doubles DoubleUncheckedCreateNestedManyWithoutSetsInput No
games GameUncheckedCreateNestedManyWithoutSetInput No
events EventUncheckedCreateNestedManyWithoutSetsInput No

SetCreateOrConnectWithoutMatchInput

Name Type Nullable
where SetWhereUniqueInput No
create SetCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput No

SetCreateManyMatchInputEnvelope

Name Type Nullable
data SetCreateManyMatchInput | SetCreateManyMatchInput[] No
skipDuplicates Boolean No


DoubleUncheckedCreateWithoutMatchesInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutMatchesInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutMatchesInput | DoubleUncheckedCreateWithoutMatchesInput No

EventCreateWithoutMatchesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutMatchesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutMatchesInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutMatchesInput | EventUncheckedCreateWithoutMatchesInput No

MatchDateCreateWithoutMatchInput

Name Type Nullable
id String No
start DateTime No
finish DateTime No
event EventCreateNestedOneWithoutMatchDatesInput No
court CourtCreateNestedOneWithoutMatchDatesInput No
atRest EventDoubleCreateNestedManyWithoutAtRestInput No

MatchDateUncheckedCreateWithoutMatchInput

Name Type Nullable
id String No
eventId String No
start DateTime No
finish DateTime No
courtId String No
atRest EventDoubleUncheckedCreateNestedManyWithoutAtRestInput No

MatchDateCreateOrConnectWithoutMatchInput

Name Type Nullable
where MatchDateWhereUniqueInput No
create MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput No

CourtCreateWithoutMatchesInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
events EventCreateNestedManyWithoutCourtsInput No
place PlaceCreateNestedOneWithoutCourtsInput No
matchDates MatchDateCreateNestedManyWithoutCourtInput No

CourtUncheckedCreateWithoutMatchesInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
placeId String No
events EventUncheckedCreateNestedManyWithoutCourtsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutCourtInput No

CourtCreateOrConnectWithoutMatchesInput

Name Type Nullable
where CourtWhereUniqueInput No
create CourtCreateWithoutMatchesInput | CourtUncheckedCreateWithoutMatchesInput No

InviteCreateWithoutMatchInput

Name Type Nullable
id String No
inviteType InviteType No
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerCreateNestedManyWithoutInvitesInput No
double DoubleCreateNestedOneWithoutInvitesInput No
event EventCreateNestedOneWithoutInviteInput No

InviteUncheckedCreateWithoutMatchInput

Name Type Nullable
id String No
inviteType InviteType No
doublesId String | Null Yes
eventId String | Null Yes
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerUncheckedCreateNestedManyWithoutInvitesInput No

InviteCreateOrConnectWithoutMatchInput

Name Type Nullable
where InviteWhereUniqueInput No
create InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput No

EventMatchCreateWithoutMatchInput

Name Type Nullable
number Int No
type EventMatchType No
event EventCreateNestedOneWithoutEventMatchesInput No
matchesWinnersRef MatchCreateNestedManyWithoutWinnerRefInput No
categoryGroup CategoryGroupCreateNestedOneWithoutFinalMatchesInput No
doublesGroup DoublesGroupCreateNestedOneWithoutGroupMatchesInput No

EventMatchUncheckedCreateWithoutMatchInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
categoryGroupId String | Null Yes
doublesGroupId String | Null Yes
matchesWinnersRef MatchUncheckedCreateNestedManyWithoutWinnerRefInput No

EventMatchCreateOrConnectWithoutMatchInput

Name Type Nullable
where EventMatchWhereUniqueInput No
create EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput No

EventMatchCreateWithoutMatchesWinnersRefInput

Name Type Nullable
number Int No
type EventMatchType No
event EventCreateNestedOneWithoutEventMatchesInput No
match MatchCreateNestedOneWithoutEventMatchInput No
categoryGroup CategoryGroupCreateNestedOneWithoutFinalMatchesInput No
doublesGroup DoublesGroupCreateNestedOneWithoutGroupMatchesInput No

EventMatchUncheckedCreateWithoutMatchesWinnersRefInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
categoryGroupId String | Null Yes
doublesGroupId String | Null Yes

EventMatchCreateOrConnectWithoutMatchesWinnersRefInput

Name Type Nullable
where EventMatchWhereUniqueInput No
create EventMatchCreateWithoutMatchesWinnersRefInput | EventMatchUncheckedCreateWithoutMatchesWinnersRefInput No


PlayerUpdateWithWhereUniqueWithoutMatchesInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutMatchesInput | PlayerUncheckedUpdateWithoutMatchesInput No

PlayerUpdateManyWithWhereWithoutMatchesInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutMatchesInput No


CategoryUpdateToOneWithWhereWithoutMatchesInput

Name Type Nullable
where CategoryWhereInput No
data CategoryUpdateWithoutMatchesInput | CategoryUncheckedUpdateWithoutMatchesInput No




DoubleUpdateToOneWithWhereWithoutMatchesWinsInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutMatchesWinsInput | DoubleUncheckedUpdateWithoutMatchesWinsInput No


DoubleUncheckedUpdateWithoutMatchesWinsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

SetUpsertWithWhereUniqueWithoutMatchInput

Name Type Nullable
where SetWhereUniqueInput No
update SetUpdateWithoutMatchInput | SetUncheckedUpdateWithoutMatchInput No
create SetCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput No

SetUpdateWithWhereUniqueWithoutMatchInput

Name Type Nullable
where SetWhereUniqueInput No
data SetUpdateWithoutMatchInput | SetUncheckedUpdateWithoutMatchInput No

SetUpdateManyWithWhereWithoutMatchInput

Name Type Nullable
where SetScalarWhereInput No
data SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutMatchInput No


DoubleUpdateWithWhereUniqueWithoutMatchesInput

Name Type Nullable
where DoubleWhereUniqueInput No
data DoubleUpdateWithoutMatchesInput | DoubleUncheckedUpdateWithoutMatchesInput No

DoubleUpdateManyWithWhereWithoutMatchesInput

Name Type Nullable
where DoubleScalarWhereInput No
data DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutMatchesInput No


EventUpdateToOneWithWhereWithoutMatchesInput

Name Type Nullable
where EventWhereInput No
data EventUpdateWithoutMatchesInput | EventUncheckedUpdateWithoutMatchesInput No

EventUpdateWithoutMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No


MatchDateUpdateToOneWithWhereWithoutMatchInput

Name Type Nullable
where MatchDateWhereInput No
data MatchDateUpdateWithoutMatchInput | MatchDateUncheckedUpdateWithoutMatchInput No


MatchDateUncheckedUpdateWithoutMatchInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No
courtId String | StringFieldUpdateOperationsInput No
atRest EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput No


CourtUpdateToOneWithWhereWithoutMatchesInput

Name Type Nullable
where CourtWhereInput No
data CourtUpdateWithoutMatchesInput | CourtUncheckedUpdateWithoutMatchesInput No


CourtUncheckedUpdateWithoutMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
placeId String | StringFieldUpdateOperationsInput No
events EventUncheckedUpdateManyWithoutCourtsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutCourtNestedInput No


InviteUpdateToOneWithWhereWithoutMatchInput

Name Type Nullable
where InviteWhereInput No
data InviteUpdateWithoutMatchInput | InviteUncheckedUpdateWithoutMatchInput No


InviteUncheckedUpdateWithoutMatchInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
doublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutInvitesNestedInput No


EventMatchUpdateToOneWithWhereWithoutMatchInput

Name Type Nullable
where EventMatchWhereInput No
data EventMatchUpdateWithoutMatchInput | EventMatchUncheckedUpdateWithoutMatchInput No


EventMatchUncheckedUpdateWithoutMatchInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchesWinnersRef MatchUncheckedUpdateManyWithoutWinnerRefNestedInput No


EventMatchUpdateToOneWithWhereWithoutMatchesWinnersRefInput

Name Type Nullable
where EventMatchWhereInput No
data EventMatchUpdateWithoutMatchesWinnersRefInput | EventMatchUncheckedUpdateWithoutMatchesWinnersRefInput No


EventMatchUncheckedUpdateWithoutMatchesWinnersRefInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventCreateWithoutMatchDatesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutMatchDatesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutMatchDatesInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutMatchDatesInput | EventUncheckedCreateWithoutMatchDatesInput No


MatchUncheckedCreateWithoutMatchDateInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutMatchDateInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutMatchDateInput | MatchUncheckedCreateWithoutMatchDateInput No

CourtCreateWithoutMatchDatesInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
events EventCreateNestedManyWithoutCourtsInput No
matches MatchCreateNestedManyWithoutCourtInput No
place PlaceCreateNestedOneWithoutCourtsInput No

CourtUncheckedCreateWithoutMatchDatesInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
placeId String No
events EventUncheckedCreateNestedManyWithoutCourtsInput No
matches MatchUncheckedCreateNestedManyWithoutCourtInput No

CourtCreateOrConnectWithoutMatchDatesInput

Name Type Nullable
where CourtWhereUniqueInput No
create CourtCreateWithoutMatchDatesInput | CourtUncheckedCreateWithoutMatchDatesInput No


EventDoubleUncheckedCreateWithoutAtRestInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
doublesGroupId String | Null Yes

EventDoubleCreateOrConnectWithoutAtRestInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
create EventDoubleCreateWithoutAtRestInput | EventDoubleUncheckedCreateWithoutAtRestInput No

EventDoubleCreateManyAtRestInputEnvelope

Name Type Nullable
data EventDoubleCreateManyAtRestInput | EventDoubleCreateManyAtRestInput[] No
skipDuplicates Boolean No


EventUpdateToOneWithWhereWithoutMatchDatesInput

Name Type Nullable
where EventWhereInput No
data EventUpdateWithoutMatchDatesInput | EventUncheckedUpdateWithoutMatchDatesInput No

EventUpdateWithoutMatchDatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutMatchDatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No


MatchUpdateToOneWithWhereWithoutMatchDateInput

Name Type Nullable
where MatchWhereInput No
data MatchUpdateWithoutMatchDateInput | MatchUncheckedUpdateWithoutMatchDateInput No


MatchUncheckedUpdateWithoutMatchDateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No


CourtUpdateToOneWithWhereWithoutMatchDatesInput

Name Type Nullable
where CourtWhereInput No
data CourtUpdateWithoutMatchDatesInput | CourtUncheckedUpdateWithoutMatchDatesInput No

CourtUpdateWithoutMatchDatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
events EventUpdateManyWithoutCourtsNestedInput No
matches MatchUpdateManyWithoutCourtNestedInput No
place PlaceUpdateOneRequiredWithoutCourtsNestedInput No

CourtUncheckedUpdateWithoutMatchDatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
placeId String | StringFieldUpdateOperationsInput No
events EventUncheckedUpdateManyWithoutCourtsNestedInput No
matches MatchUncheckedUpdateManyWithoutCourtNestedInput No


EventDoubleUpdateWithWhereUniqueWithoutAtRestInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
data EventDoubleUpdateWithoutAtRestInput | EventDoubleUncheckedUpdateWithoutAtRestInput No

EventDoubleUpdateManyWithWhereWithoutAtRestInput

Name Type Nullable
where EventDoubleScalarWhereInput No
data EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutAtRestInput No


DoubleUncheckedCreateWithoutSetsInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutSetsInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput No


DoubleUncheckedCreateWithoutSetsWinsInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutSetsWinsInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutSetsWinsInput | DoubleUncheckedCreateWithoutSetsWinsInput No


MatchUncheckedCreateWithoutSetsInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutSetsInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutSetsInput | MatchUncheckedCreateWithoutSetsInput No

GameCreateWithoutSetInput

Name Type Nullable
id String No
doubles DoubleCreateNestedManyWithoutGamesInput No
winner DoubleCreateNestedOneWithoutGamesWinsInput No
events EventCreateNestedManyWithoutGamesInput No

GameUncheckedCreateWithoutSetInput

Name Type Nullable
id String No
winnerId String | Null Yes
doubles DoubleUncheckedCreateNestedManyWithoutGamesInput No
events EventUncheckedCreateNestedManyWithoutGamesInput No

GameCreateOrConnectWithoutSetInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput No

GameCreateManySetInputEnvelope

Name Type Nullable
data GameCreateManySetInput | GameCreateManySetInput[] No
skipDuplicates Boolean No

EventCreateWithoutSetsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutSetsInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutSetsInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput No

DoubleUpsertWithWhereUniqueWithoutSetsInput

Name Type Nullable
where DoubleWhereUniqueInput No
update DoubleUpdateWithoutSetsInput | DoubleUncheckedUpdateWithoutSetsInput No
create DoubleCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput No

DoubleUpdateWithWhereUniqueWithoutSetsInput

Name Type Nullable
where DoubleWhereUniqueInput No
data DoubleUpdateWithoutSetsInput | DoubleUncheckedUpdateWithoutSetsInput No

DoubleUpdateManyWithWhereWithoutSetsInput

Name Type Nullable
where DoubleScalarWhereInput No
data DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutSetsInput No


DoubleUpdateToOneWithWhereWithoutSetsWinsInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutSetsWinsInput | DoubleUncheckedUpdateWithoutSetsWinsInput No


DoubleUncheckedUpdateWithoutSetsWinsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No


MatchUpdateToOneWithWhereWithoutSetsInput

Name Type Nullable
where MatchWhereInput No
data MatchUpdateWithoutSetsInput | MatchUncheckedUpdateWithoutSetsInput No


MatchUncheckedUpdateWithoutSetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

GameUpsertWithWhereUniqueWithoutSetInput

Name Type Nullable
where GameWhereUniqueInput No
update GameUpdateWithoutSetInput | GameUncheckedUpdateWithoutSetInput No
create GameCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput No

GameUpdateWithWhereUniqueWithoutSetInput

Name Type Nullable
where GameWhereUniqueInput No
data GameUpdateWithoutSetInput | GameUncheckedUpdateWithoutSetInput No

GameUpdateManyWithWhereWithoutSetInput

Name Type Nullable
where GameScalarWhereInput No
data GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutSetInput No

EventUpsertWithWhereUniqueWithoutSetsInput

Name Type Nullable
where EventWhereUniqueInput No
update EventUpdateWithoutSetsInput | EventUncheckedUpdateWithoutSetsInput No
create EventCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput No

EventUpdateWithWhereUniqueWithoutSetsInput

Name Type Nullable
where EventWhereUniqueInput No
data EventUpdateWithoutSetsInput | EventUncheckedUpdateWithoutSetsInput No

EventUpdateManyWithWhereWithoutSetsInput

Name Type Nullable
where EventScalarWhereInput No
data EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutSetsInput No

SetCreateWithoutGamesInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
isFinished Boolean No
doubles DoubleCreateNestedManyWithoutSetsInput No
winner DoubleCreateNestedOneWithoutSetsWinsInput No
match MatchCreateNestedOneWithoutSetsInput No
events EventCreateNestedManyWithoutSetsInput No

SetUncheckedCreateWithoutGamesInput

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String | Null Yes
result String | Null Yes
matchId String No
isFinished Boolean No
doubles DoubleUncheckedCreateNestedManyWithoutSetsInput No
events EventUncheckedCreateNestedManyWithoutSetsInput No

SetCreateOrConnectWithoutGamesInput

Name Type Nullable
where SetWhereUniqueInput No
create SetCreateWithoutGamesInput | SetUncheckedCreateWithoutGamesInput No


DoubleUncheckedCreateWithoutGamesInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutGamesInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput No


DoubleUncheckedCreateWithoutGamesWinsInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutGamesWinsInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutGamesWinsInput | DoubleUncheckedCreateWithoutGamesWinsInput No

EventCreateWithoutGamesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutGamesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutGamesInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput No


SetUpdateToOneWithWhereWithoutGamesInput

Name Type Nullable
where SetWhereInput No
data SetUpdateWithoutGamesInput | SetUncheckedUpdateWithoutGamesInput No


SetUncheckedUpdateWithoutGamesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
setWinnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
result String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
doubles DoubleUncheckedUpdateManyWithoutSetsNestedInput No
events EventUncheckedUpdateManyWithoutSetsNestedInput No


DoubleUpdateWithWhereUniqueWithoutGamesInput

Name Type Nullable
where DoubleWhereUniqueInput No
data DoubleUpdateWithoutGamesInput | DoubleUncheckedUpdateWithoutGamesInput No

DoubleUpdateManyWithWhereWithoutGamesInput

Name Type Nullable
where DoubleScalarWhereInput No
data DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutGamesInput No


DoubleUpdateToOneWithWhereWithoutGamesWinsInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutGamesWinsInput | DoubleUncheckedUpdateWithoutGamesWinsInput No


DoubleUncheckedUpdateWithoutGamesWinsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

EventUpsertWithWhereUniqueWithoutGamesInput

Name Type Nullable
where EventWhereUniqueInput No
update EventUpdateWithoutGamesInput | EventUncheckedUpdateWithoutGamesInput No
create EventCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput No

EventUpdateWithWhereUniqueWithoutGamesInput

Name Type Nullable
where EventWhereUniqueInput No
data EventUpdateWithoutGamesInput | EventUncheckedUpdateWithoutGamesInput No

EventUpdateManyWithWhereWithoutGamesInput

Name Type Nullable
where EventScalarWhereInput No
data EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutGamesInput No

PlayerCreateWithoutUserInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
category CategoryCreateNestedOneWithoutPlayersInput No
matches MatchCreateNestedManyWithoutPlayersInput No
doubles DoubleCreateNestedManyWithoutPlayersInput No
events EventCreateNestedManyWithoutPlayersInput No
invites InviteCreateNestedManyWithoutPlayersInput No

PlayerUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
categoryId String No
position PlayerPosition | Null Yes
matches MatchUncheckedCreateNestedManyWithoutPlayersInput No
doubles DoubleUncheckedCreateNestedManyWithoutPlayersInput No
events EventUncheckedCreateNestedManyWithoutPlayersInput No
invites InviteUncheckedCreateNestedManyWithoutPlayersInput No

PlayerCreateOrConnectWithoutUserInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutUserInput | PlayerUncheckedCreateWithoutUserInput No


PlayerUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where PlayerWhereInput No
data PlayerUpdateWithoutUserInput | PlayerUncheckedUpdateWithoutUserInput No



PlayerCreateWithoutInvitesInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
category CategoryCreateNestedOneWithoutPlayersInput No
matches MatchCreateNestedManyWithoutPlayersInput No
doubles DoubleCreateNestedManyWithoutPlayersInput No
events EventCreateNestedManyWithoutPlayersInput No
user UserCreateNestedOneWithoutPlayerInput No

PlayerUncheckedCreateWithoutInvitesInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
categoryId String No
position PlayerPosition | Null Yes
matches MatchUncheckedCreateNestedManyWithoutPlayersInput No
doubles DoubleUncheckedCreateNestedManyWithoutPlayersInput No
events EventUncheckedCreateNestedManyWithoutPlayersInput No
user UserUncheckedCreateNestedOneWithoutPlayerInput No

PlayerCreateOrConnectWithoutInvitesInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutInvitesInput | PlayerUncheckedCreateWithoutInvitesInput No


DoubleUncheckedCreateWithoutInvitesInput

Name Type Nullable
id String No
categoryId String No
players PlayerUncheckedCreateNestedManyWithoutDoublesInput No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutInvitesInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutInvitesInput | DoubleUncheckedCreateWithoutInvitesInput No

EventCreateWithoutInviteInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutInviteInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutInviteInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutInviteInput | EventUncheckedCreateWithoutInviteInput No


MatchUncheckedCreateWithoutInviteInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutInviteInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutInviteInput | MatchUncheckedCreateWithoutInviteInput No


PlayerUpdateWithWhereUniqueWithoutInvitesInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutInvitesInput | PlayerUncheckedUpdateWithoutInvitesInput No

PlayerUpdateManyWithWhereWithoutInvitesInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutInvitesInput No


DoubleUpdateToOneWithWhereWithoutInvitesInput

Name Type Nullable
where DoubleWhereInput No
data DoubleUpdateWithoutInvitesInput | DoubleUncheckedUpdateWithoutInvitesInput No


DoubleUncheckedUpdateWithoutInvitesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No


EventUpdateToOneWithWhereWithoutInviteInput

Name Type Nullable
where EventWhereInput No
data EventUpdateWithoutInviteInput | EventUncheckedUpdateWithoutInviteInput No

EventUpdateWithoutInviteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutInviteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No


MatchUpdateToOneWithWhereWithoutInviteInput

Name Type Nullable
where MatchWhereInput No
data MatchUpdateWithoutInviteInput | MatchUncheckedUpdateWithoutInviteInput No


MatchUncheckedUpdateWithoutInviteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No



CategoryCreateOrConnectWithoutPlayersInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutPlayersInput | CategoryUncheckedCreateWithoutPlayersInput No


MatchUncheckedCreateWithoutPlayersInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutPlayersInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput No


DoubleUncheckedCreateWithoutPlayersInput

Name Type Nullable
id String No
categoryId String No
matches MatchUncheckedCreateNestedManyWithoutDoublesInput No
games GameUncheckedCreateNestedManyWithoutDoublesInput No
sets SetUncheckedCreateNestedManyWithoutDoublesInput No
matchesWins MatchUncheckedCreateNestedManyWithoutWinnerInput No
setsWins SetUncheckedCreateNestedManyWithoutWinnerInput No
gamesWins GameUncheckedCreateNestedManyWithoutWinnerInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutDoubleInput No
eventDouble EventDoubleUncheckedCreateNestedManyWithoutDoubleInput No
invites InviteUncheckedCreateNestedManyWithoutDoubleInput No
firstPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput No
secondPlaceInGroups DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput No

DoubleCreateOrConnectWithoutPlayersInput

Name Type Nullable
where DoubleWhereUniqueInput No
create DoubleCreateWithoutPlayersInput | DoubleUncheckedCreateWithoutPlayersInput No

EventCreateWithoutPlayersInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
places PlaceCreateNestedManyWithoutEventsInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutPlayersInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
places PlaceUncheckedCreateNestedManyWithoutEventsInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutPlayersInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput No

UserCreateWithoutPlayerInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
email String No
password String No
dob DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
role Role No
hashedRt String | Null Yes
profileImage String | Null Yes

UserUncheckedCreateWithoutPlayerInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
email String No
password String No
dob DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
role Role No
hashedRt String | Null Yes
profileImage String | Null Yes

UserCreateOrConnectWithoutPlayerInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput No

InviteCreateWithoutPlayersInput

Name Type Nullable
id String No
inviteType InviteType No
inviterId String No
invitedId String No
createdAt DateTime No
double DoubleCreateNestedOneWithoutInvitesInput No
event EventCreateNestedOneWithoutInviteInput No
match MatchCreateNestedOneWithoutInviteInput No

InviteUncheckedCreateWithoutPlayersInput

Name Type Nullable
id String No
inviteType InviteType No
doublesId String | Null Yes
eventId String | Null Yes
matchId String | Null Yes
inviterId String No
invitedId String No
createdAt DateTime No

InviteCreateOrConnectWithoutPlayersInput

Name Type Nullable
where InviteWhereUniqueInput No
create InviteCreateWithoutPlayersInput | InviteUncheckedCreateWithoutPlayersInput No


CategoryUpdateToOneWithWhereWithoutPlayersInput

Name Type Nullable
where CategoryWhereInput No
data CategoryUpdateWithoutPlayersInput | CategoryUncheckedUpdateWithoutPlayersInput No




MatchUpdateWithWhereUniqueWithoutPlayersInput

Name Type Nullable
where MatchWhereUniqueInput No
data MatchUpdateWithoutPlayersInput | MatchUncheckedUpdateWithoutPlayersInput No

MatchUpdateManyWithWhereWithoutPlayersInput

Name Type Nullable
where MatchScalarWhereInput No
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutPlayersInput No


DoubleUpdateWithWhereUniqueWithoutPlayersInput

Name Type Nullable
where DoubleWhereUniqueInput No
data DoubleUpdateWithoutPlayersInput | DoubleUncheckedUpdateWithoutPlayersInput No

DoubleUpdateManyWithWhereWithoutPlayersInput

Name Type Nullable
where DoubleScalarWhereInput No
data DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutPlayersInput No


EventUpdateWithWhereUniqueWithoutPlayersInput

Name Type Nullable
where EventWhereUniqueInput No
data EventUpdateWithoutPlayersInput | EventUncheckedUpdateWithoutPlayersInput No

EventUpdateManyWithWhereWithoutPlayersInput

Name Type Nullable
where EventScalarWhereInput No
data EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutPlayersInput No


UserUpdateToOneWithWhereWithoutPlayerInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutPlayerInput | UserUncheckedUpdateWithoutPlayerInput No

UserUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No
hashedRt String | NullableStringFieldUpdateOperationsInput | Null Yes
profileImage String | NullableStringFieldUpdateOperationsInput | Null Yes

UserUncheckedUpdateWithoutPlayerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No
hashedRt String | NullableStringFieldUpdateOperationsInput | Null Yes
profileImage String | NullableStringFieldUpdateOperationsInput | Null Yes


InviteUpdateWithWhereUniqueWithoutPlayersInput

Name Type Nullable
where InviteWhereUniqueInput No
data InviteUpdateWithoutPlayersInput | InviteUncheckedUpdateWithoutPlayersInput No

InviteUpdateManyWithWhereWithoutPlayersInput

Name Type Nullable
where InviteScalarWhereInput No
data InviteUpdateManyMutationInput | InviteUncheckedUpdateManyWithoutPlayersInput No

InviteScalarWhereInput

Name Type Nullable
AND InviteScalarWhereInput | InviteScalarWhereInput[] No
OR InviteScalarWhereInput[] No
NOT InviteScalarWhereInput | InviteScalarWhereInput[] No
id StringFilter | String No
inviteType EnumInviteTypeFilter | InviteType No
doublesId StringNullableFilter | String | Null Yes
eventId StringNullableFilter | String | Null Yes
matchId StringNullableFilter | String | Null Yes
inviterId StringFilter | String No
invitedId StringFilter | String No
createdAt DateTimeFilter | DateTime No

PlayerCreateWithoutDoublesInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes
category CategoryCreateNestedOneWithoutPlayersInput No
matches MatchCreateNestedManyWithoutPlayersInput No
events EventCreateNestedManyWithoutPlayersInput No
user UserCreateNestedOneWithoutPlayerInput No
invites InviteCreateNestedManyWithoutPlayersInput No

PlayerUncheckedCreateWithoutDoublesInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
categoryId String No
position PlayerPosition | Null Yes
matches MatchUncheckedCreateNestedManyWithoutPlayersInput No
events EventUncheckedCreateNestedManyWithoutPlayersInput No
user UserUncheckedCreateNestedOneWithoutPlayerInput No
invites InviteUncheckedCreateNestedManyWithoutPlayersInput No

PlayerCreateOrConnectWithoutDoublesInput

Name Type Nullable
where PlayerWhereUniqueInput No
create PlayerCreateWithoutDoublesInput | PlayerUncheckedCreateWithoutDoublesInput No


MatchUncheckedCreateWithoutDoublesInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutDoublesInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput No



CategoryCreateOrConnectWithoutDoublesInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutDoublesInput | CategoryUncheckedCreateWithoutDoublesInput No

GameCreateWithoutDoublesInput

Name Type Nullable
id String No
set SetCreateNestedOneWithoutGamesInput No
winner DoubleCreateNestedOneWithoutGamesWinsInput No
events EventCreateNestedManyWithoutGamesInput No

GameUncheckedCreateWithoutDoublesInput

Name Type Nullable
id String No
setId String No
winnerId String | Null Yes
events EventUncheckedCreateNestedManyWithoutGamesInput No

GameCreateOrConnectWithoutDoublesInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput No

SetCreateWithoutDoublesInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
isFinished Boolean No
winner DoubleCreateNestedOneWithoutSetsWinsInput No
match MatchCreateNestedOneWithoutSetsInput No
games GameCreateNestedManyWithoutSetInput No
events EventCreateNestedManyWithoutSetsInput No

SetUncheckedCreateWithoutDoublesInput

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String | Null Yes
result String | Null Yes
matchId String No
isFinished Boolean No
games GameUncheckedCreateNestedManyWithoutSetInput No
events EventUncheckedCreateNestedManyWithoutSetsInput No

SetCreateOrConnectWithoutDoublesInput

Name Type Nullable
where SetWhereUniqueInput No
create SetCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput No


MatchUncheckedCreateWithoutWinnerInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes
players PlayerUncheckedCreateNestedManyWithoutMatchesInput No
sets SetUncheckedCreateNestedManyWithoutMatchInput No
doubles DoubleUncheckedCreateNestedManyWithoutMatchesInput No
matchDate MatchDateUncheckedCreateNestedOneWithoutMatchInput No
invite InviteUncheckedCreateNestedOneWithoutMatchInput No
eventMatch EventMatchUncheckedCreateNestedOneWithoutMatchInput No

MatchCreateOrConnectWithoutWinnerInput

Name Type Nullable
where MatchWhereUniqueInput No
create MatchCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput No

MatchCreateManyWinnerInputEnvelope

Name Type Nullable
data MatchCreateManyWinnerInput | MatchCreateManyWinnerInput[] No
skipDuplicates Boolean No

SetCreateWithoutWinnerInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
isFinished Boolean No
doubles DoubleCreateNestedManyWithoutSetsInput No
match MatchCreateNestedOneWithoutSetsInput No
games GameCreateNestedManyWithoutSetInput No
events EventCreateNestedManyWithoutSetsInput No

SetUncheckedCreateWithoutWinnerInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
matchId String No
isFinished Boolean No
doubles DoubleUncheckedCreateNestedManyWithoutSetsInput No
games GameUncheckedCreateNestedManyWithoutSetInput No
events EventUncheckedCreateNestedManyWithoutSetsInput No

SetCreateOrConnectWithoutWinnerInput

Name Type Nullable
where SetWhereUniqueInput No
create SetCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput No

SetCreateManyWinnerInputEnvelope

Name Type Nullable
data SetCreateManyWinnerInput | SetCreateManyWinnerInput[] No
skipDuplicates Boolean No

GameCreateWithoutWinnerInput

Name Type Nullable
id String No
set SetCreateNestedOneWithoutGamesInput No
doubles DoubleCreateNestedManyWithoutGamesInput No
events EventCreateNestedManyWithoutGamesInput No

GameUncheckedCreateWithoutWinnerInput

Name Type Nullable
id String No
setId String No
doubles DoubleUncheckedCreateNestedManyWithoutGamesInput No
events EventUncheckedCreateNestedManyWithoutGamesInput No

GameCreateOrConnectWithoutWinnerInput

Name Type Nullable
where GameWhereUniqueInput No
create GameCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput No

GameCreateManyWinnerInputEnvelope

Name Type Nullable
data GameCreateManyWinnerInput | GameCreateManyWinnerInput[] No
skipDuplicates Boolean No

EventRequestCreateWithoutDoubleInput

Name Type Nullable
status RequestStatus No
event EventCreateNestedOneWithoutEventRequestsInput No
category CategoryCreateNestedOneWithoutEventRequestsInput No

EventRequestUncheckedCreateWithoutDoubleInput

Name Type Nullable
eventId String No
categoryId String No
status RequestStatus No

EventRequestCreateOrConnectWithoutDoubleInput

Name Type Nullable
where EventRequestWhereUniqueInput No
create EventRequestCreateWithoutDoubleInput | EventRequestUncheckedCreateWithoutDoubleInput No

EventRequestCreateManyDoubleInputEnvelope

Name Type Nullable
data EventRequestCreateManyDoubleInput | EventRequestCreateManyDoubleInput[] No
skipDuplicates Boolean No


EventDoubleUncheckedCreateWithoutDoubleInput

Name Type Nullable
eventId String No
categoryId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes

EventDoubleCreateOrConnectWithoutDoubleInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
create EventDoubleCreateWithoutDoubleInput | EventDoubleUncheckedCreateWithoutDoubleInput No

EventDoubleCreateManyDoubleInputEnvelope

Name Type Nullable
data EventDoubleCreateManyDoubleInput | EventDoubleCreateManyDoubleInput[] No
skipDuplicates Boolean No

InviteCreateWithoutDoubleInput

Name Type Nullable
id String No
inviteType InviteType No
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerCreateNestedManyWithoutInvitesInput No
event EventCreateNestedOneWithoutInviteInput No
match MatchCreateNestedOneWithoutInviteInput No

InviteUncheckedCreateWithoutDoubleInput

Name Type Nullable
id String No
inviteType InviteType No
eventId String | Null Yes
matchId String | Null Yes
inviterId String No
invitedId String No
createdAt DateTime No
players PlayerUncheckedCreateNestedManyWithoutInvitesInput No

InviteCreateOrConnectWithoutDoubleInput

Name Type Nullable
where InviteWhereUniqueInput No
create InviteCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput No

InviteCreateManyDoubleInputEnvelope

Name Type Nullable
data InviteCreateManyDoubleInput | InviteCreateManyDoubleInput[] No
skipDuplicates Boolean No

DoublesGroupCreateWithoutFirstPlaceInput

Name Type Nullable
id String No
key String No
eventDoubles EventDoubleCreateNestedManyWithoutDoublesGroupInput No
categoryGroup CategoryGroupCreateNestedOneWithoutGroupsInput No
secondPlace DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput No
groupMatches EventMatchCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupUncheckedCreateWithoutFirstPlaceInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
secondPlaceDoublesId String | Null Yes
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput No
groupMatches EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupCreateOrConnectWithoutFirstPlaceInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
create DoublesGroupCreateWithoutFirstPlaceInput | DoublesGroupUncheckedCreateWithoutFirstPlaceInput No

DoublesGroupCreateManyFirstPlaceInputEnvelope

Name Type Nullable
data DoublesGroupCreateManyFirstPlaceInput | DoublesGroupCreateManyFirstPlaceInput[] No
skipDuplicates Boolean No

DoublesGroupCreateWithoutSecondPlaceInput

Name Type Nullable
id String No
key String No
eventDoubles EventDoubleCreateNestedManyWithoutDoublesGroupInput No
categoryGroup CategoryGroupCreateNestedOneWithoutGroupsInput No
firstPlace DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput No
groupMatches EventMatchCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupUncheckedCreateWithoutSecondPlaceInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
firstPlaceDoublesId String | Null Yes
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput No
groupMatches EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput No

DoublesGroupCreateOrConnectWithoutSecondPlaceInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
create DoublesGroupCreateWithoutSecondPlaceInput | DoublesGroupUncheckedCreateWithoutSecondPlaceInput No

DoublesGroupCreateManySecondPlaceInputEnvelope

Name Type Nullable
data DoublesGroupCreateManySecondPlaceInput | DoublesGroupCreateManySecondPlaceInput[] No
skipDuplicates Boolean No


PlayerUpdateWithWhereUniqueWithoutDoublesInput

Name Type Nullable
where PlayerWhereUniqueInput No
data PlayerUpdateWithoutDoublesInput | PlayerUncheckedUpdateWithoutDoublesInput No

PlayerUpdateManyWithWhereWithoutDoublesInput

Name Type Nullable
where PlayerScalarWhereInput No
data PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutDoublesInput No


MatchUpdateWithWhereUniqueWithoutDoublesInput

Name Type Nullable
where MatchWhereUniqueInput No
data MatchUpdateWithoutDoublesInput | MatchUncheckedUpdateWithoutDoublesInput No

MatchUpdateManyWithWhereWithoutDoublesInput

Name Type Nullable
where MatchScalarWhereInput No
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutDoublesInput No


CategoryUpdateToOneWithWhereWithoutDoublesInput

Name Type Nullable
where CategoryWhereInput No
data CategoryUpdateWithoutDoublesInput | CategoryUncheckedUpdateWithoutDoublesInput No



GameUpsertWithWhereUniqueWithoutDoublesInput

Name Type Nullable
where GameWhereUniqueInput No
update GameUpdateWithoutDoublesInput | GameUncheckedUpdateWithoutDoublesInput No
create GameCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput No

GameUpdateWithWhereUniqueWithoutDoublesInput

Name Type Nullable
where GameWhereUniqueInput No
data GameUpdateWithoutDoublesInput | GameUncheckedUpdateWithoutDoublesInput No

GameUpdateManyWithWhereWithoutDoublesInput

Name Type Nullable
where GameScalarWhereInput No
data GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutDoublesInput No

SetUpsertWithWhereUniqueWithoutDoublesInput

Name Type Nullable
where SetWhereUniqueInput No
update SetUpdateWithoutDoublesInput | SetUncheckedUpdateWithoutDoublesInput No
create SetCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput No

SetUpdateWithWhereUniqueWithoutDoublesInput

Name Type Nullable
where SetWhereUniqueInput No
data SetUpdateWithoutDoublesInput | SetUncheckedUpdateWithoutDoublesInput No

SetUpdateManyWithWhereWithoutDoublesInput

Name Type Nullable
where SetScalarWhereInput No
data SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutDoublesInput No


MatchUpdateWithWhereUniqueWithoutWinnerInput

Name Type Nullable
where MatchWhereUniqueInput No
data MatchUpdateWithoutWinnerInput | MatchUncheckedUpdateWithoutWinnerInput No

MatchUpdateManyWithWhereWithoutWinnerInput

Name Type Nullable
where MatchScalarWhereInput No
data MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutWinnerInput No

SetUpsertWithWhereUniqueWithoutWinnerInput

Name Type Nullable
where SetWhereUniqueInput No
update SetUpdateWithoutWinnerInput | SetUncheckedUpdateWithoutWinnerInput No
create SetCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput No

SetUpdateWithWhereUniqueWithoutWinnerInput

Name Type Nullable
where SetWhereUniqueInput No
data SetUpdateWithoutWinnerInput | SetUncheckedUpdateWithoutWinnerInput No

SetUpdateManyWithWhereWithoutWinnerInput

Name Type Nullable
where SetScalarWhereInput No
data SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutWinnerInput No

GameUpsertWithWhereUniqueWithoutWinnerInput

Name Type Nullable
where GameWhereUniqueInput No
update GameUpdateWithoutWinnerInput | GameUncheckedUpdateWithoutWinnerInput No
create GameCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput No

GameUpdateWithWhereUniqueWithoutWinnerInput

Name Type Nullable
where GameWhereUniqueInput No
data GameUpdateWithoutWinnerInput | GameUncheckedUpdateWithoutWinnerInput No

GameUpdateManyWithWhereWithoutWinnerInput

Name Type Nullable
where GameScalarWhereInput No
data GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutWinnerInput No


EventRequestUpdateWithWhereUniqueWithoutDoubleInput

Name Type Nullable
where EventRequestWhereUniqueInput No
data EventRequestUpdateWithoutDoubleInput | EventRequestUncheckedUpdateWithoutDoubleInput No

EventRequestUpdateManyWithWhereWithoutDoubleInput

Name Type Nullable
where EventRequestScalarWhereInput No
data EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyWithoutDoubleInput No


EventDoubleUpdateWithWhereUniqueWithoutDoubleInput

Name Type Nullable
where EventDoubleWhereUniqueInput No
data EventDoubleUpdateWithoutDoubleInput | EventDoubleUncheckedUpdateWithoutDoubleInput No

EventDoubleUpdateManyWithWhereWithoutDoubleInput

Name Type Nullable
where EventDoubleScalarWhereInput No
data EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutDoubleInput No


InviteUpdateWithWhereUniqueWithoutDoubleInput

Name Type Nullable
where InviteWhereUniqueInput No
data InviteUpdateWithoutDoubleInput | InviteUncheckedUpdateWithoutDoubleInput No

InviteUpdateManyWithWhereWithoutDoubleInput

Name Type Nullable
where InviteScalarWhereInput No
data InviteUpdateManyMutationInput | InviteUncheckedUpdateManyWithoutDoubleInput No


DoublesGroupUpdateWithWhereUniqueWithoutFirstPlaceInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
data DoublesGroupUpdateWithoutFirstPlaceInput | DoublesGroupUncheckedUpdateWithoutFirstPlaceInput No

DoublesGroupUpdateManyWithWhereWithoutFirstPlaceInput

Name Type Nullable
where DoublesGroupScalarWhereInput No
data DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyWithoutFirstPlaceInput No


DoublesGroupUpdateWithWhereUniqueWithoutSecondPlaceInput

Name Type Nullable
where DoublesGroupWhereUniqueInput No
data DoublesGroupUpdateWithoutSecondPlaceInput | DoublesGroupUncheckedUpdateWithoutSecondPlaceInput No

DoublesGroupUpdateManyWithWhereWithoutSecondPlaceInput

Name Type Nullable
where DoublesGroupScalarWhereInput No
data DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyWithoutSecondPlaceInput No

EventCreateWithoutPlacesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryCreateNestedManyWithoutEventsInput No
players PlayerCreateNestedManyWithoutEventsInput No
matches MatchCreateNestedManyWithoutEventInput No
eventRequests EventRequestCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleCreateNestedManyWithoutEventInput No
games GameCreateNestedManyWithoutEventsInput No
sets SetCreateNestedManyWithoutEventsInput No
matchDates MatchDateCreateNestedManyWithoutEventInput No
courts CourtCreateNestedManyWithoutEventsInput No
invite InviteCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupCreateNestedManyWithoutEventInput No
eventMatches EventMatchCreateNestedManyWithoutEventInput No

EventUncheckedCreateWithoutPlacesInput

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime | Null Yes
finishDate DateTime | Null Yes
matchDurationInMinutes Int | Null Yes
timeOfFirstMatch Int | Null Yes
timeOfLastMatch Int | Null Yes
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No
categories CategoryUncheckedCreateNestedManyWithoutEventsInput No
players PlayerUncheckedCreateNestedManyWithoutEventsInput No
matches MatchUncheckedCreateNestedManyWithoutEventInput No
eventRequests EventRequestUncheckedCreateNestedManyWithoutEventInput No
eventDoubles EventDoubleUncheckedCreateNestedManyWithoutEventInput No
games GameUncheckedCreateNestedManyWithoutEventsInput No
sets SetUncheckedCreateNestedManyWithoutEventsInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutEventInput No
courts CourtUncheckedCreateNestedManyWithoutEventsInput No
invite InviteUncheckedCreateNestedOneWithoutEventInput No
categoriesGroups CategoryGroupUncheckedCreateNestedManyWithoutEventInput No
eventMatches EventMatchUncheckedCreateNestedManyWithoutEventInput No

EventCreateOrConnectWithoutPlacesInput

Name Type Nullable
where EventWhereUniqueInput No
create EventCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput No

CourtCreateWithoutPlaceInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
events EventCreateNestedManyWithoutCourtsInput No
matches MatchCreateNestedManyWithoutCourtInput No
matchDates MatchDateCreateNestedManyWithoutCourtInput No

CourtUncheckedCreateWithoutPlaceInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No
events EventUncheckedCreateNestedManyWithoutCourtsInput No
matches MatchUncheckedCreateNestedManyWithoutCourtInput No
matchDates MatchDateUncheckedCreateNestedManyWithoutCourtInput No

CourtCreateOrConnectWithoutPlaceInput

Name Type Nullable
where CourtWhereUniqueInput No
create CourtCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput No

CourtCreateManyPlaceInputEnvelope

Name Type Nullable
data CourtCreateManyPlaceInput | CourtCreateManyPlaceInput[] No
skipDuplicates Boolean No


EventUpdateWithWhereUniqueWithoutPlacesInput

Name Type Nullable
where EventWhereUniqueInput No
data EventUpdateWithoutPlacesInput | EventUncheckedUpdateWithoutPlacesInput No

EventUpdateManyWithWhereWithoutPlacesInput

Name Type Nullable
where EventScalarWhereInput No
data EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutPlacesInput No

CourtUpsertWithWhereUniqueWithoutPlaceInput

Name Type Nullable
where CourtWhereUniqueInput No
update CourtUpdateWithoutPlaceInput | CourtUncheckedUpdateWithoutPlaceInput No
create CourtCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput No

CourtUpdateWithWhereUniqueWithoutPlaceInput

Name Type Nullable
where CourtWhereUniqueInput No
data CourtUpdateWithoutPlaceInput | CourtUncheckedUpdateWithoutPlaceInput No

CourtUpdateManyWithWhereWithoutPlaceInput

Name Type Nullable
where CourtScalarWhereInput No
data CourtUpdateManyMutationInput | CourtUncheckedUpdateManyWithoutPlaceInput No

MatchCreateManyEventInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes

EventRequestCreateManyEventInput

Name Type Nullable
doubleId String No
categoryId String No
status RequestStatus No

EventDoubleCreateManyEventInput

Name Type Nullable
doubleId String No
categoryId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes

MatchDateCreateManyEventInput

Name Type Nullable
id String No
matchId String | Null Yes
start DateTime No
finish DateTime No
courtId String No

CategoryGroupCreateManyEventInput

Name Type Nullable
id String No
categoryId String No
groupsStageFinished Boolean No

EventMatchCreateManyEventInput

Name Type Nullable
number Int No
type EventMatchType No
matchId String No
categoryGroupId String | Null Yes
doublesGroupId String | Null Yes



CategoryUncheckedUpdateManyWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
level Int | IntFieldUpdateOperationsInput No
type CatType | EnumCatTypeFieldUpdateOperationsInput No



PlayerUncheckedUpdateManyWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
categoryId String | StringFieldUpdateOperationsInput No
position PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null Yes


MatchUncheckedUpdateWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchUncheckedUpdateManyWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes

PlaceUpdateWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
courts CourtUpdateManyWithoutPlaceNestedInput No

PlaceUncheckedUpdateWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
courts CourtUncheckedUpdateManyWithoutPlaceNestedInput No

PlaceUncheckedUpdateManyWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes


EventRequestUncheckedUpdateWithoutEventInput

Name Type Nullable
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No

EventRequestUncheckedUpdateManyWithoutEventInput

Name Type Nullable
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No


EventDoubleUncheckedUpdateWithoutEventInput

Name Type Nullable
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventDoubleUncheckedUpdateManyWithoutEventInput

Name Type Nullable
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes


GameUncheckedUpdateWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
doubles DoubleUncheckedUpdateManyWithoutGamesNestedInput No

GameUncheckedUpdateManyWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes


SetUncheckedUpdateWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
setWinnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
result String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
doubles DoubleUncheckedUpdateManyWithoutSetsNestedInput No
games GameUncheckedUpdateManyWithoutSetNestedInput No

SetUncheckedUpdateManyWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
setWinnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
result String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No


MatchDateUncheckedUpdateWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No
courtId String | StringFieldUpdateOperationsInput No
atRest EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput No

MatchDateUncheckedUpdateManyWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No
courtId String | StringFieldUpdateOperationsInput No

CourtUpdateWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
matches MatchUpdateManyWithoutCourtNestedInput No
place PlaceUpdateOneRequiredWithoutCourtsNestedInput No
matchDates MatchDateUpdateManyWithoutCourtNestedInput No

CourtUncheckedUpdateWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
placeId String | StringFieldUpdateOperationsInput No
matches MatchUncheckedUpdateManyWithoutCourtNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutCourtNestedInput No

CourtUncheckedUpdateManyWithoutEventsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
placeId String | StringFieldUpdateOperationsInput No

CategoryGroupUpdateWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
category CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput No
groups DoublesGroupUpdateManyWithoutCategoryGroupNestedInput No
finalMatches EventMatchUpdateManyWithoutCategoryGroupNestedInput No

CategoryGroupUncheckedUpdateWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
groups DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput No
finalMatches EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput No

CategoryGroupUncheckedUpdateManyWithoutEventInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No


EventMatchUncheckedUpdateWithoutEventInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchesWinnersRef MatchUncheckedUpdateManyWithoutWinnerRefNestedInput No

EventMatchUncheckedUpdateManyWithoutEventInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

DoublesGroupCreateManyCategoryGroupInput

Name Type Nullable
id String No
key String No
firstPlaceDoublesId String | Null Yes
secondPlaceDoublesId String | Null Yes

EventMatchCreateManyCategoryGroupInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
doublesGroupId String | Null Yes


DoublesGroupUncheckedUpdateWithoutCategoryGroupInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventDoubles EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput No
groupMatches EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput No

DoublesGroupUncheckedUpdateManyWithoutCategoryGroupInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes


EventMatchUncheckedUpdateWithoutCategoryGroupInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchesWinnersRef MatchUncheckedUpdateManyWithoutWinnerRefNestedInput No

EventMatchUncheckedUpdateManyWithoutCategoryGroupInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventDoubleCreateManyDoublesGroupInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
atRestId String | Null Yes

EventMatchCreateManyDoublesGroupInput

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
categoryGroupId String | Null Yes


EventDoubleUncheckedUpdateWithoutDoublesGroupInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventDoubleUncheckedUpdateManyWithoutDoublesGroupInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes


EventMatchUncheckedUpdateWithoutDoublesGroupInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchesWinnersRef MatchUncheckedUpdateManyWithoutWinnerRefNestedInput No

EventMatchUncheckedUpdateManyWithoutDoublesGroupInput

Name Type Nullable
number Int | IntFieldUpdateOperationsInput No
type EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

MatchCreateManyCourtInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
winnerRefId String | Null Yes

MatchDateCreateManyCourtInput

Name Type Nullable
id String No
eventId String No
matchId String | Null Yes
start DateTime No
finish DateTime No

EventUpdateWithoutCourtsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutCourtsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateManyWithoutCourtsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No


MatchUncheckedUpdateWithoutCourtInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchUncheckedUpdateManyWithoutCourtInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes


MatchDateUncheckedUpdateWithoutCourtInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No
atRest EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput No

MatchDateUncheckedUpdateManyWithoutCourtInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | StringFieldUpdateOperationsInput No
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | DateTimeFieldUpdateOperationsInput No
finish DateTime | DateTimeFieldUpdateOperationsInput No

PlayerCreateManyCategoryInput

Name Type Nullable
id String No
firstName String | Null Yes
lastName String | Null Yes
position PlayerPosition | Null Yes

DoubleCreateManyCategoryInput

Name Type Nullable
id String No

MatchCreateManyCategoryInput

Name Type Nullable
id String No
isFinished Boolean No
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes

EventDoubleCreateManyCategoryInput

Name Type Nullable
eventId String No
doubleId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes

EventRequestCreateManyCategoryInput

Name Type Nullable
eventId String No
doubleId String No
status RequestStatus No

CategoryGroupCreateManyCategoryInput

Name Type Nullable
id String No
eventId String | Null Yes
groupsStageFinished Boolean No



PlayerUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
position PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null Yes


DoubleUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

DoubleUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

EventUpdateWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateManyWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No


MatchUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes


EventDoubleUncheckedUpdateWithoutCategoryInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventDoubleUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes


EventRequestUncheckedUpdateWithoutCategoryInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No

EventRequestUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No

CategoryGroupUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
groups DoublesGroupUpdateManyWithoutCategoryGroupNestedInput No
event EventUpdateOneWithoutCategoriesGroupsNestedInput No
finalMatches EventMatchUpdateManyWithoutCategoryGroupNestedInput No

CategoryGroupUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No
groups DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput No
finalMatches EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput No

CategoryGroupUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
groupsStageFinished Boolean | BoolFieldUpdateOperationsInput No

MatchCreateManyWinnerRefInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
winnerDoublesId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes


MatchUncheckedUpdateWithoutWinnerRefInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchUncheckedUpdateManyWithoutWinnerRefInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes

SetCreateManyMatchInput

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String | Null Yes
result String | Null Yes
isFinished Boolean No



PlayerUncheckedUpdateManyWithoutMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
categoryId String | StringFieldUpdateOperationsInput No
position PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null Yes



SetUncheckedUpdateManyWithoutMatchInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
setWinnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
result String | NullableStringFieldUpdateOperationsInput | Null Yes
isFinished Boolean | BoolFieldUpdateOperationsInput No


DoubleUncheckedUpdateWithoutMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

DoubleUncheckedUpdateManyWithoutMatchesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No

EventDoubleCreateManyAtRestInput

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
doublesGroupId String | Null Yes


EventDoubleUncheckedUpdateWithoutAtRestInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventDoubleUncheckedUpdateManyWithoutAtRestInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
doubleId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

GameCreateManySetInput

Name Type Nullable
id String No
winnerId String | Null Yes


DoubleUncheckedUpdateWithoutSetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

DoubleUncheckedUpdateManyWithoutSetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No


GameUncheckedUpdateWithoutSetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
doubles DoubleUncheckedUpdateManyWithoutGamesNestedInput No
events EventUncheckedUpdateManyWithoutGamesNestedInput No

GameUncheckedUpdateManyWithoutSetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventUpdateWithoutSetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutSetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateManyWithoutSetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No


DoubleUncheckedUpdateWithoutGamesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutDoublesNestedInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

DoubleUncheckedUpdateManyWithoutGamesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No

EventUpdateWithoutGamesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutGamesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateManyWithoutGamesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No



PlayerUncheckedUpdateManyWithoutInvitesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
categoryId String | StringFieldUpdateOperationsInput No
position PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null Yes


MatchUncheckedUpdateWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchUncheckedUpdateManyWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes


DoubleUncheckedUpdateWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
matches MatchUncheckedUpdateManyWithoutDoublesNestedInput No
games GameUncheckedUpdateManyWithoutDoublesNestedInput No
sets SetUncheckedUpdateManyWithoutDoublesNestedInput No
matchesWins MatchUncheckedUpdateManyWithoutWinnerNestedInput No
setsWins SetUncheckedUpdateManyWithoutWinnerNestedInput No
gamesWins GameUncheckedUpdateManyWithoutWinnerNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutDoubleNestedInput No
eventDouble EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput No
invites InviteUncheckedUpdateManyWithoutDoubleNestedInput No
firstPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput No
secondPlaceInGroups DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput No

DoubleUncheckedUpdateManyWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No

EventUpdateWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
places PlaceUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
places PlaceUncheckedUpdateManyWithoutEventsNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateManyWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No


InviteUncheckedUpdateWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
doublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

InviteUncheckedUpdateManyWithoutPlayersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
doublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

MatchCreateManyWinnerInput

Name Type Nullable
id String No
isFinished Boolean No
categoryId String | Null Yes
eventId String | Null Yes
type MatchType No
courtId String | Null Yes
winnerRefId String | Null Yes

SetCreateManyWinnerInput

Name Type Nullable
id String No
type SetType No
number Int No
result String | Null Yes
matchId String No
isFinished Boolean No

GameCreateManyWinnerInput

Name Type Nullable
id String No
setId String No

EventRequestCreateManyDoubleInput

Name Type Nullable
eventId String No
categoryId String No
status RequestStatus No

EventDoubleCreateManyDoubleInput

Name Type Nullable
eventId String No
categoryId String No
atRestId String | Null Yes
doublesGroupId String | Null Yes

InviteCreateManyDoubleInput

Name Type Nullable
id String No
inviteType InviteType No
eventId String | Null Yes
matchId String | Null Yes
inviterId String No
invitedId String No
createdAt DateTime No

DoublesGroupCreateManyFirstPlaceInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
secondPlaceDoublesId String | Null Yes

DoublesGroupCreateManySecondPlaceInput

Name Type Nullable
id String No
key String No
categoryGroupId String | Null Yes
firstPlaceDoublesId String | Null Yes



PlayerUncheckedUpdateManyWithoutDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
categoryId String | StringFieldUpdateOperationsInput No
position PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null Yes


MatchUncheckedUpdateWithoutDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchUncheckedUpdateManyWithoutDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes


GameUncheckedUpdateWithoutDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
events EventUncheckedUpdateManyWithoutGamesNestedInput No

GameUncheckedUpdateManyWithoutDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No
winnerId String | NullableStringFieldUpdateOperationsInput | Null Yes


SetUncheckedUpdateWithoutDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
setWinnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
result String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
games GameUncheckedUpdateManyWithoutSetNestedInput No
events EventUncheckedUpdateManyWithoutSetsNestedInput No

SetUncheckedUpdateManyWithoutDoublesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
setWinnerId String | NullableStringFieldUpdateOperationsInput | Null Yes
result String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No


MatchUncheckedUpdateWithoutWinnerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes
players PlayerUncheckedUpdateManyWithoutMatchesNestedInput No
sets SetUncheckedUpdateManyWithoutMatchNestedInput No
doubles DoubleUncheckedUpdateManyWithoutMatchesNestedInput No
matchDate MatchDateUncheckedUpdateOneWithoutMatchNestedInput No
invite InviteUncheckedUpdateOneWithoutMatchNestedInput No
eventMatch EventMatchUncheckedUpdateOneWithoutMatchNestedInput No

MatchUncheckedUpdateManyWithoutWinnerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
categoryId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
type MatchType | EnumMatchTypeFieldUpdateOperationsInput No
courtId String | NullableStringFieldUpdateOperationsInput | Null Yes
winnerRefId String | NullableStringFieldUpdateOperationsInput | Null Yes



SetUncheckedUpdateManyWithoutWinnerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type SetType | EnumSetTypeFieldUpdateOperationsInput No
number Int | IntFieldUpdateOperationsInput No
result String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | StringFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No


GameUncheckedUpdateWithoutWinnerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No
doubles DoubleUncheckedUpdateManyWithoutGamesNestedInput No
events EventUncheckedUpdateManyWithoutGamesNestedInput No

GameUncheckedUpdateManyWithoutWinnerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
setId String | StringFieldUpdateOperationsInput No


EventRequestUncheckedUpdateWithoutDoubleInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No

EventRequestUncheckedUpdateManyWithoutDoubleInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
status RequestStatus | EnumRequestStatusFieldUpdateOperationsInput No


EventDoubleUncheckedUpdateWithoutDoubleInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes

EventDoubleUncheckedUpdateManyWithoutDoubleInput

Name Type Nullable
eventId String | StringFieldUpdateOperationsInput No
categoryId String | StringFieldUpdateOperationsInput No
atRestId String | NullableStringFieldUpdateOperationsInput | Null Yes
doublesGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes


InviteUncheckedUpdateWithoutDoubleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
players PlayerUncheckedUpdateManyWithoutInvitesNestedInput No

InviteUncheckedUpdateManyWithoutDoubleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
inviteType InviteType | EnumInviteTypeFieldUpdateOperationsInput No
eventId String | NullableStringFieldUpdateOperationsInput | Null Yes
matchId String | NullableStringFieldUpdateOperationsInput | Null Yes
inviterId String | StringFieldUpdateOperationsInput No
invitedId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No


DoublesGroupUncheckedUpdateWithoutFirstPlaceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventDoubles EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput No
groupMatches EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput No

DoublesGroupUncheckedUpdateManyWithoutFirstPlaceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
secondPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes


DoublesGroupUncheckedUpdateWithoutSecondPlaceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes
eventDoubles EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput No
groupMatches EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput No

DoublesGroupUncheckedUpdateManyWithoutSecondPlaceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
key String | StringFieldUpdateOperationsInput No
categoryGroupId String | NullableStringFieldUpdateOperationsInput | Null Yes
firstPlaceDoublesId String | NullableStringFieldUpdateOperationsInput | Null Yes

CourtCreateManyPlaceInput

Name Type Nullable
id String No
name String No
isAvailable Boolean No

EventUpdateWithoutPlacesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutEventsNestedInput No
players PlayerUpdateManyWithoutEventsNestedInput No
matches MatchUpdateManyWithoutEventNestedInput No
eventRequests EventRequestUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUpdateManyWithoutEventNestedInput No
games GameUpdateManyWithoutEventsNestedInput No
sets SetUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUpdateManyWithoutEventNestedInput No
courts CourtUpdateManyWithoutEventsNestedInput No
invite InviteUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateWithoutPlacesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutEventsNestedInput No
players PlayerUncheckedUpdateManyWithoutEventsNestedInput No
matches MatchUncheckedUpdateManyWithoutEventNestedInput No
eventRequests EventRequestUncheckedUpdateManyWithoutEventNestedInput No
eventDoubles EventDoubleUncheckedUpdateManyWithoutEventNestedInput No
games GameUncheckedUpdateManyWithoutEventsNestedInput No
sets SetUncheckedUpdateManyWithoutEventsNestedInput No
matchDates MatchDateUncheckedUpdateManyWithoutEventNestedInput No
courts CourtUncheckedUpdateManyWithoutEventsNestedInput No
invite InviteUncheckedUpdateOneWithoutEventNestedInput No
categoriesGroups CategoryGroupUncheckedUpdateManyWithoutEventNestedInput No
eventMatches EventMatchUncheckedUpdateManyWithoutEventNestedInput No

EventUncheckedUpdateManyWithoutPlacesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isActive Boolean | BoolFieldUpdateOperationsInput No
isFinished Boolean | BoolFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
finishDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
matchDurationInMinutes Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfFirstMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
timeOfLastMatch Int | NullableIntFieldUpdateOperationsInput | Null Yes
eventType EventType | EnumEventTypeFieldUpdateOperationsInput No
matchType MatchType | EnumMatchTypeFieldUpdateOperationsInput No
isGroupMatchesFinished Boolean | BoolFieldUpdateOperationsInput No

CourtUpdateWithoutPlaceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No
events EventUpdateManyWithoutCourtsNestedInput No
matches MatchUpdateManyWithoutCourtNestedInput No
matchDates MatchDateUpdateManyWithoutCourtNestedInput No


CourtUncheckedUpdateManyWithoutPlaceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
isAvailable Boolean | BoolFieldUpdateOperationsInput No

Output Types

Event

Name Type Nullable
id String Yes
name String Yes
isActive Boolean Yes
isFinished Boolean Yes
startDate DateTime No
finishDate DateTime No
matchDurationInMinutes Int No
timeOfFirstMatch Int No
timeOfLastMatch Int No
eventType EventType Yes
matchType MatchType Yes
isGroupMatchesFinished Boolean Yes
categories Category[] No
players Player[] No
matches Match[] No
places Place[] No
eventRequests EventRequest[] No
eventDoubles EventDouble[] No
games Game[] No
sets Set[] No
matchDates MatchDate[] No
courts Court[] No
invite Invite No
categoriesGroups CategoryGroup[] No
eventMatches EventMatch[] No
_count EventCountOutputType Yes

CategoryGroup

Name Type Nullable
id String Yes
categoryId String Yes
eventId String No
groupsStageFinished Boolean Yes
category Category Yes
groups DoublesGroup[] No
event Event No
finalMatches EventMatch[] No
_count CategoryGroupCountOutputType Yes

DoublesGroup

Name Type Nullable
id String Yes
key String Yes
categoryGroupId String No
firstPlaceDoublesId String No
secondPlaceDoublesId String No
eventDoubles EventDouble[] No
categoryGroup CategoryGroup No
firstPlace Double No
secondPlace Double No
groupMatches EventMatch[] No
_count DoublesGroupCountOutputType Yes

EventRequest

Name Type Nullable
eventId String Yes
doubleId String Yes
categoryId String Yes
status RequestStatus Yes
event Event Yes
double Double Yes
category Category Yes

Court

Name Type Nullable
id String Yes
name String Yes
isAvailable Boolean Yes
placeId String Yes
events Event[] No
matches Match[] No
place Place Yes
matchDates MatchDate[] No
_count CourtCountOutputType Yes

EventDouble

Name Type Nullable
eventId String Yes
doubleId String Yes
categoryId String Yes
atRestId String No
doublesGroupId String No
event Event Yes
double Double Yes
category Category Yes
atRest MatchDate No
DoublesGroup DoublesGroup No

Category

Name Type Nullable
id String Yes
level Int Yes
type CatType Yes
players Player[] No
doubles Double[] No
events Event[] No
matches Match[] No
eventDoubles EventDouble[] No
eventRequests EventRequest[] No
categoryGroup CategoryGroup[] No
_count CategoryCountOutputType Yes

EventMatch

Name Type Nullable
number Int Yes
type EventMatchType Yes
eventId String Yes
matchId String Yes
categoryGroupId String No
doublesGroupId String No
event Event Yes
match Match Yes
matchesWinnersRef Match[] No
categoryGroup CategoryGroup No
doublesGroup DoublesGroup No
_count EventMatchCountOutputType Yes

Match

Name Type Nullable
id String Yes
isFinished Boolean Yes
categoryId String No
winnerDoublesId String No
eventId String No
type MatchType Yes
courtId String No
winnerRefId String No
players Player[] No
category Category No
winner Double No
sets Set[] No
doubles Double[] No
event Event No
matchDate MatchDate No
court Court No
invite Invite No
eventMatch EventMatch No
winnerRef EventMatch No
_count MatchCountOutputType Yes

MatchDate

Name Type Nullable
id String Yes
eventId String Yes
matchId String No
start DateTime Yes
finish DateTime Yes
courtId String Yes
event Event Yes
match Match No
court Court Yes
atRest EventDouble[] No
_count MatchDateCountOutputType Yes

Set

Name Type Nullable
id String Yes
type SetType Yes
number Int Yes
setWinnerId String No
result String No
matchId String Yes
isFinished Boolean Yes
doubles Double[] No
winner Double No
match Match Yes
games Game[] No
events Event[] No
_count SetCountOutputType Yes

Game

Name Type Nullable
id String Yes
setId String Yes
winnerId String No
set Set Yes
doubles Double[] No
winner Double No
events Event[] No
_count GameCountOutputType Yes

User

Name Type Nullable
id String Yes
firstName String No
lastName String No
email String Yes
password String Yes
dob DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
playerId String No
role Role Yes
hashedRt String No
profileImage String No
player Player No

Invite

Name Type Nullable
id String Yes
inviteType InviteType Yes
doublesId String No
eventId String No
matchId String No
inviterId String Yes
invitedId String Yes
createdAt DateTime Yes
players Player[] No
double Double No
event Event No
match Match No
_count InviteCountOutputType Yes

Player

Name Type Nullable
id String Yes
firstName String No
lastName String No
categoryId String Yes
position PlayerPosition No
category Category Yes
matches Match[] No
doubles Double[] No
events Event[] No
user User No
invites Invite[] No
_count PlayerCountOutputType Yes

Double

Name Type Nullable
id String Yes
categoryId String Yes
players Player[] No
matches Match[] No
category Category Yes
games Game[] No
sets Set[] No
matchesWins Match[] No
setsWins Set[] No
gamesWins Game[] No
eventRequests EventRequest[] No
eventDouble EventDouble[] No
invites Invite[] No
firstPlaceInGroups DoublesGroup[] No
secondPlaceInGroups DoublesGroup[] No
_count DoubleCountOutputType Yes

Place

Name Type Nullable
id String Yes
name String No
address String No
events Event[] No
courts Court[] No
_count PlaceCountOutputType Yes


EventGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
isActive Boolean Yes
isFinished Boolean Yes
startDate DateTime No
finishDate DateTime No
matchDurationInMinutes Int No
timeOfFirstMatch Int No
timeOfLastMatch Int No
eventType EventType Yes
matchType MatchType Yes
isGroupMatchesFinished Boolean Yes
_count EventCountAggregateOutputType No
_avg EventAvgAggregateOutputType No
_sum EventSumAggregateOutputType No
_min EventMinAggregateOutputType No
_max EventMaxAggregateOutputType No

AggregateCategoryGroup

Name Type Nullable
_count CategoryGroupCountAggregateOutputType No
_min CategoryGroupMinAggregateOutputType No
_max CategoryGroupMaxAggregateOutputType No

CategoryGroupGroupByOutputType

Name Type Nullable
id String Yes
categoryId String Yes
eventId String No
groupsStageFinished Boolean Yes
_count CategoryGroupCountAggregateOutputType No
_min CategoryGroupMinAggregateOutputType No
_max CategoryGroupMaxAggregateOutputType No

AggregateDoublesGroup

Name Type Nullable
_count DoublesGroupCountAggregateOutputType No
_min DoublesGroupMinAggregateOutputType No
_max DoublesGroupMaxAggregateOutputType No

DoublesGroupGroupByOutputType

Name Type Nullable
id String Yes
key String Yes
categoryGroupId String No
firstPlaceDoublesId String No
secondPlaceDoublesId String No
_count DoublesGroupCountAggregateOutputType No
_min DoublesGroupMinAggregateOutputType No
_max DoublesGroupMaxAggregateOutputType No

AggregateEventRequest

Name Type Nullable
_count EventRequestCountAggregateOutputType No
_min EventRequestMinAggregateOutputType No
_max EventRequestMaxAggregateOutputType No

EventRequestGroupByOutputType

Name Type Nullable
eventId String Yes
doubleId String Yes
categoryId String Yes
status RequestStatus Yes
_count EventRequestCountAggregateOutputType No
_min EventRequestMinAggregateOutputType No
_max EventRequestMaxAggregateOutputType No

AggregateCourt

Name Type Nullable
_count CourtCountAggregateOutputType No
_min CourtMinAggregateOutputType No
_max CourtMaxAggregateOutputType No

CourtGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
isAvailable Boolean Yes
placeId String Yes
_count CourtCountAggregateOutputType No
_min CourtMinAggregateOutputType No
_max CourtMaxAggregateOutputType No

AggregateEventDouble

Name Type Nullable
_count EventDoubleCountAggregateOutputType No
_min EventDoubleMinAggregateOutputType No
_max EventDoubleMaxAggregateOutputType No

EventDoubleGroupByOutputType

Name Type Nullable
eventId String Yes
doubleId String Yes
categoryId String Yes
atRestId String No
doublesGroupId String No
_count EventDoubleCountAggregateOutputType No
_min EventDoubleMinAggregateOutputType No
_max EventDoubleMaxAggregateOutputType No


CategoryGroupByOutputType

Name Type Nullable
id String Yes
level Int Yes
type CatType Yes
_count CategoryCountAggregateOutputType No
_avg CategoryAvgAggregateOutputType No
_sum CategorySumAggregateOutputType No
_min CategoryMinAggregateOutputType No
_max CategoryMaxAggregateOutputType No


EventMatchGroupByOutputType

Name Type Nullable
number Int Yes
type EventMatchType Yes
eventId String Yes
matchId String Yes
categoryGroupId String No
doublesGroupId String No
_count EventMatchCountAggregateOutputType No
_avg EventMatchAvgAggregateOutputType No
_sum EventMatchSumAggregateOutputType No
_min EventMatchMinAggregateOutputType No
_max EventMatchMaxAggregateOutputType No

AggregateMatch

Name Type Nullable
_count MatchCountAggregateOutputType No
_min MatchMinAggregateOutputType No
_max MatchMaxAggregateOutputType No

MatchGroupByOutputType

Name Type Nullable
id String Yes
isFinished Boolean Yes
categoryId String No
winnerDoublesId String No
eventId String No
type MatchType Yes
courtId String No
winnerRefId String No
_count MatchCountAggregateOutputType No
_min MatchMinAggregateOutputType No
_max MatchMaxAggregateOutputType No

AggregateMatchDate

Name Type Nullable
_count MatchDateCountAggregateOutputType No
_min MatchDateMinAggregateOutputType No
_max MatchDateMaxAggregateOutputType No

MatchDateGroupByOutputType

Name Type Nullable
id String Yes
eventId String Yes
matchId String No
start DateTime Yes
finish DateTime Yes
courtId String Yes
_count MatchDateCountAggregateOutputType No
_min MatchDateMinAggregateOutputType No
_max MatchDateMaxAggregateOutputType No


SetGroupByOutputType

Name Type Nullable
id String Yes
type SetType Yes
number Int Yes
setWinnerId String No
result String No
matchId String Yes
isFinished Boolean Yes
_count SetCountAggregateOutputType No
_avg SetAvgAggregateOutputType No
_sum SetSumAggregateOutputType No
_min SetMinAggregateOutputType No
_max SetMaxAggregateOutputType No

AggregateGame

Name Type Nullable
_count GameCountAggregateOutputType No
_min GameMinAggregateOutputType No
_max GameMaxAggregateOutputType No

GameGroupByOutputType

Name Type Nullable
id String Yes
setId String Yes
winnerId String No
_count GameCountAggregateOutputType No
_min GameMinAggregateOutputType No
_max GameMaxAggregateOutputType No

AggregateUser

Name Type Nullable
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

UserGroupByOutputType

Name Type Nullable
id String Yes
firstName String No
lastName String No
email String Yes
password String Yes
dob DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
playerId String No
role Role Yes
hashedRt String No
profileImage String No
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregateInvite

Name Type Nullable
_count InviteCountAggregateOutputType No
_min InviteMinAggregateOutputType No
_max InviteMaxAggregateOutputType No

InviteGroupByOutputType

Name Type Nullable
id String Yes
inviteType InviteType Yes
doublesId String No
eventId String No
matchId String No
inviterId String Yes
invitedId String Yes
createdAt DateTime Yes
_count InviteCountAggregateOutputType No
_min InviteMinAggregateOutputType No
_max InviteMaxAggregateOutputType No

AggregatePlayer

Name Type Nullable
_count PlayerCountAggregateOutputType No
_min PlayerMinAggregateOutputType No
_max PlayerMaxAggregateOutputType No

PlayerGroupByOutputType

Name Type Nullable
id String Yes
firstName String No
lastName String No
categoryId String Yes
position PlayerPosition No
_count PlayerCountAggregateOutputType No
_min PlayerMinAggregateOutputType No
_max PlayerMaxAggregateOutputType No

AggregateDouble

Name Type Nullable
_count DoubleCountAggregateOutputType No
_min DoubleMinAggregateOutputType No
_max DoubleMaxAggregateOutputType No

DoubleGroupByOutputType

Name Type Nullable
id String Yes
categoryId String Yes
_count DoubleCountAggregateOutputType No
_min DoubleMinAggregateOutputType No
_max DoubleMaxAggregateOutputType No

AggregatePlace

Name Type Nullable
_count PlaceCountAggregateOutputType No
_min PlaceMinAggregateOutputType No
_max PlaceMaxAggregateOutputType No

PlaceGroupByOutputType

Name Type Nullable
id String Yes
name String No
address String No
_count PlaceCountAggregateOutputType No
_min PlaceMinAggregateOutputType No
_max PlaceMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

EventCountOutputType

Name Type Nullable
categories Int Yes
players Int Yes
matches Int Yes
places Int Yes
eventRequests Int Yes
eventDoubles Int Yes
games Int Yes
sets Int Yes
matchDates Int Yes
courts Int Yes
categoriesGroups Int Yes
eventMatches Int Yes

EventCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
isActive Int Yes
isFinished Int Yes
startDate Int Yes
finishDate Int Yes
matchDurationInMinutes Int Yes
timeOfFirstMatch Int Yes
timeOfLastMatch Int Yes
eventType Int Yes
matchType Int Yes
isGroupMatchesFinished Int Yes
_all Int Yes

EventAvgAggregateOutputType

Name Type Nullable
matchDurationInMinutes Float No
timeOfFirstMatch Float No
timeOfLastMatch Float No

EventSumAggregateOutputType

Name Type Nullable
matchDurationInMinutes Int No
timeOfFirstMatch Int No
timeOfLastMatch Int No

EventMinAggregateOutputType

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime No
finishDate DateTime No
matchDurationInMinutes Int No
timeOfFirstMatch Int No
timeOfLastMatch Int No
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No

EventMaxAggregateOutputType

Name Type Nullable
id String No
name String No
isActive Boolean No
isFinished Boolean No
startDate DateTime No
finishDate DateTime No
matchDurationInMinutes Int No
timeOfFirstMatch Int No
timeOfLastMatch Int No
eventType EventType No
matchType MatchType No
isGroupMatchesFinished Boolean No

CategoryGroupCountOutputType

Name Type Nullable
groups Int Yes
finalMatches Int Yes

CategoryGroupCountAggregateOutputType

Name Type Nullable
id Int Yes
categoryId Int Yes
eventId Int Yes
groupsStageFinished Int Yes
_all Int Yes

CategoryGroupMinAggregateOutputType

Name Type Nullable
id String No
categoryId String No
eventId String No
groupsStageFinished Boolean No

CategoryGroupMaxAggregateOutputType

Name Type Nullable
id String No
categoryId String No
eventId String No
groupsStageFinished Boolean No

DoublesGroupCountOutputType

Name Type Nullable
eventDoubles Int Yes
groupMatches Int Yes

DoublesGroupCountAggregateOutputType

Name Type Nullable
id Int Yes
key Int Yes
categoryGroupId Int Yes
firstPlaceDoublesId Int Yes
secondPlaceDoublesId Int Yes
_all Int Yes

DoublesGroupMinAggregateOutputType

Name Type Nullable
id String No
key String No
categoryGroupId String No
firstPlaceDoublesId String No
secondPlaceDoublesId String No

DoublesGroupMaxAggregateOutputType

Name Type Nullable
id String No
key String No
categoryGroupId String No
firstPlaceDoublesId String No
secondPlaceDoublesId String No

EventRequestCountAggregateOutputType

Name Type Nullable
eventId Int Yes
doubleId Int Yes
categoryId Int Yes
status Int Yes
_all Int Yes

EventRequestMinAggregateOutputType

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
status RequestStatus No

EventRequestMaxAggregateOutputType

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
status RequestStatus No

CourtCountOutputType

Name Type Nullable
events Int Yes
matches Int Yes
matchDates Int Yes

CourtCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
isAvailable Int Yes
placeId Int Yes
_all Int Yes

CourtMinAggregateOutputType

Name Type Nullable
id String No
name String No
isAvailable Boolean No
placeId String No

CourtMaxAggregateOutputType

Name Type Nullable
id String No
name String No
isAvailable Boolean No
placeId String No

EventDoubleCountAggregateOutputType

Name Type Nullable
eventId Int Yes
doubleId Int Yes
categoryId Int Yes
atRestId Int Yes
doublesGroupId Int Yes
_all Int Yes

EventDoubleMinAggregateOutputType

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
atRestId String No
doublesGroupId String No

EventDoubleMaxAggregateOutputType

Name Type Nullable
eventId String No
doubleId String No
categoryId String No
atRestId String No
doublesGroupId String No

CategoryCountOutputType

Name Type Nullable
players Int Yes
doubles Int Yes
events Int Yes
matches Int Yes
eventDoubles Int Yes
eventRequests Int Yes
categoryGroup Int Yes

CategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
level Int Yes
type Int Yes
_all Int Yes

CategoryAvgAggregateOutputType

Name Type Nullable
level Float No

CategorySumAggregateOutputType

Name Type Nullable
level Int No

CategoryMinAggregateOutputType

Name Type Nullable
id String No
level Int No
type CatType No

CategoryMaxAggregateOutputType

Name Type Nullable
id String No
level Int No
type CatType No

EventMatchCountOutputType

Name Type Nullable
matchesWinnersRef Int Yes

EventMatchCountAggregateOutputType

Name Type Nullable
number Int Yes
type Int Yes
eventId Int Yes
matchId Int Yes
categoryGroupId Int Yes
doublesGroupId Int Yes
_all Int Yes

EventMatchAvgAggregateOutputType

Name Type Nullable
number Float No

EventMatchSumAggregateOutputType

Name Type Nullable
number Int No

EventMatchMinAggregateOutputType

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
categoryGroupId String No
doublesGroupId String No

EventMatchMaxAggregateOutputType

Name Type Nullable
number Int No
type EventMatchType No
eventId String No
matchId String No
categoryGroupId String No
doublesGroupId String No

MatchCountOutputType

Name Type Nullable
players Int Yes
sets Int Yes
doubles Int Yes

MatchCountAggregateOutputType

Name Type Nullable
id Int Yes
isFinished Int Yes
categoryId Int Yes
winnerDoublesId Int Yes
eventId Int Yes
type Int Yes
courtId Int Yes
winnerRefId Int Yes
_all Int Yes

MatchMinAggregateOutputType

Name Type Nullable
id String No
isFinished Boolean No
categoryId String No
winnerDoublesId String No
eventId String No
type MatchType No
courtId String No
winnerRefId String No

MatchMaxAggregateOutputType

Name Type Nullable
id String No
isFinished Boolean No
categoryId String No
winnerDoublesId String No
eventId String No
type MatchType No
courtId String No
winnerRefId String No

MatchDateCountOutputType

Name Type Nullable
atRest Int Yes

MatchDateCountAggregateOutputType

Name Type Nullable
id Int Yes
eventId Int Yes
matchId Int Yes
start Int Yes
finish Int Yes
courtId Int Yes
_all Int Yes

MatchDateMinAggregateOutputType

Name Type Nullable
id String No
eventId String No
matchId String No
start DateTime No
finish DateTime No
courtId String No

MatchDateMaxAggregateOutputType

Name Type Nullable
id String No
eventId String No
matchId String No
start DateTime No
finish DateTime No
courtId String No

SetCountOutputType

Name Type Nullable
doubles Int Yes
games Int Yes
events Int Yes

SetCountAggregateOutputType

Name Type Nullable
id Int Yes
type Int Yes
number Int Yes
setWinnerId Int Yes
result Int Yes
matchId Int Yes
isFinished Int Yes
_all Int Yes

SetAvgAggregateOutputType

Name Type Nullable
number Float No

SetSumAggregateOutputType

Name Type Nullable
number Int No

SetMinAggregateOutputType

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String No
result String No
matchId String No
isFinished Boolean No

SetMaxAggregateOutputType

Name Type Nullable
id String No
type SetType No
number Int No
setWinnerId String No
result String No
matchId String No
isFinished Boolean No

GameCountOutputType

Name Type Nullable
doubles Int Yes
events Int Yes

GameCountAggregateOutputType

Name Type Nullable
id Int Yes
setId Int Yes
winnerId Int Yes
_all Int Yes

GameMinAggregateOutputType

Name Type Nullable
id String No
setId String No
winnerId String No

GameMaxAggregateOutputType

Name Type Nullable
id String No
setId String No
winnerId String No

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
firstName Int Yes
lastName Int Yes
email Int Yes
password Int Yes
dob Int Yes
createdAt Int Yes
updatedAt Int Yes
playerId Int Yes
role Int Yes
hashedRt Int Yes
profileImage Int Yes
_all Int Yes

UserMinAggregateOutputType

Name Type Nullable
id String No
firstName String No
lastName String No
email String No
password String No
dob DateTime No
createdAt DateTime No
updatedAt DateTime No
playerId String No
role Role No
hashedRt String No
profileImage String No

UserMaxAggregateOutputType

Name Type Nullable
id String No
firstName String No
lastName String No
email String No
password String No
dob DateTime No
createdAt DateTime No
updatedAt DateTime No
playerId String No
role Role No
hashedRt String No
profileImage String No

InviteCountOutputType

Name Type Nullable
players Int Yes

InviteCountAggregateOutputType

Name Type Nullable
id Int Yes
inviteType Int Yes
doublesId Int Yes
eventId Int Yes
matchId Int Yes
inviterId Int Yes
invitedId Int Yes
createdAt Int Yes
_all Int Yes

InviteMinAggregateOutputType

Name Type Nullable
id String No
inviteType InviteType No
doublesId String No
eventId String No
matchId String No
inviterId String No
invitedId String No
createdAt DateTime No

InviteMaxAggregateOutputType

Name Type Nullable
id String No
inviteType InviteType No
doublesId String No
eventId String No
matchId String No
inviterId String No
invitedId String No
createdAt DateTime No

PlayerCountOutputType

Name Type Nullable
matches Int Yes
doubles Int Yes
events Int Yes
invites Int Yes

PlayerCountAggregateOutputType

Name Type Nullable
id Int Yes
firstName Int Yes
lastName Int Yes
categoryId Int Yes
position Int Yes
_all Int Yes

PlayerMinAggregateOutputType

Name Type Nullable
id String No
firstName String No
lastName String No
categoryId String No
position PlayerPosition No

PlayerMaxAggregateOutputType

Name Type Nullable
id String No
firstName String No
lastName String No
categoryId String No
position PlayerPosition No

DoubleCountOutputType

Name Type Nullable
players Int Yes
matches Int Yes
games Int Yes
sets Int Yes
matchesWins Int Yes
setsWins Int Yes
gamesWins Int Yes
eventRequests Int Yes
eventDouble Int Yes
invites Int Yes
firstPlaceInGroups Int Yes
secondPlaceInGroups Int Yes

DoubleCountAggregateOutputType

Name Type Nullable
id Int Yes
categoryId Int Yes
_all Int Yes

DoubleMinAggregateOutputType

Name Type Nullable
id String No
categoryId String No

DoubleMaxAggregateOutputType

Name Type Nullable
id String No
categoryId String No

PlaceCountOutputType

Name Type Nullable
events Int Yes
courts Int Yes

PlaceCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
address Int Yes
_all Int Yes

PlaceMinAggregateOutputType

Name Type Nullable
id String No
name String No
address String No

PlaceMaxAggregateOutputType

Name Type Nullable
id String No
name String No
address String No